1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Review: Add ternary operators

Delete test
This commit is contained in:
Ivan Chaplygin 2023-03-03 13:29:00 +03:00
parent 6cdeb0480c
commit 15fbc099a5
2 changed files with 4 additions and 14 deletions

View file

@ -281,20 +281,9 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
}
foreach ($wc_payment->get_available_payment_gateways() as $payment) {
$title = '';
$description = '';
if (empty($payment->method_title)) {
$title = $payment->id;
} else {
$title = $payment->method_title;
}
if (empty($payment->method_description)) {
$description = $payment->description;
} else {
$description = $payment->method_description;
}
$title = empty($payment->method_title) ? $payment->id : $payment->method_title;
$description = empty($payment->method_description) ? $payment->description :
$payment->method_description;
$this->form_fields[$payment->id] = [
'css' => 'min-width:350px;',

View file

@ -47,6 +47,7 @@ class WC_Retailcrm_Abstracts_Settings_Test extends WC_Retailcrm_Test_Case_Helpe
public function test_validate_payments()
{
$this->register_lagacy_proxy_static_mocks;
$paymentGateway = new WC_Payment_Gateways();
$enabledPayments = $paymentGateway->get_available_payment_gateways();