[Changed] code cleanup

php cs fixer
This commit is contained in:
2024-11-25 18:48:39 +01:00
parent 2cd0652c31
commit c27834536d
47 changed files with 273 additions and 239 deletions

View File

@ -4,7 +4,6 @@ declare(strict_types=1);
namespace D3\GoogleAnalytics4\Modules\Application\Model;
use OxidEsales\Eshop\Application\Model\Payment;
use OxidEsales\Eshop\Core\Registry;
@ -13,8 +12,8 @@ class gtmPayment extends gtmPayment_parent
/**
* @return string
*/
public function gtmGetSelectedPaymentName() :string
public function gtmGetSelectedPaymentName(): string
{
return $this->getFieldData('oxpayments__oxdesc')?: 'No payment name available';
return $this->getFieldData('oxpayments__oxdesc') ?: 'No payment name available';
}
}
}