Skip to content

Commit c8d374a

Browse files
committed
Fix PHP CS
1 parent 72267b3 commit c8d374a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
->setRules([
2222
'@PSR2' => true,
2323
'@PSR12' => true,
24-
'@PHP74Migration:risky' => true,
24+
'@PHP7x4Migration:risky' => true,
2525
'@Symfony' => true,
2626
'array_syntax' => ['syntax' => 'short'],
2727
'binary_operator_spaces' => [

src/Domain/RedirectMapping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Omikron\FactFinder\Shopware6\Domain;
66

7-
readonly class RedirectMapping
7+
readonly class RedirectMapping implements \Stringable
88
{
99
public function __construct(private string $data)
1010
{

src/Export/Field/PriceCurrency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Shopware\Core\Framework\DataAbstractionLayer\Entity;
1010
use Shopware\Core\System\Currency\CurrencyEntity;
1111

12-
class PriceCurrency extends Price
12+
class PriceCurrency extends Price implements \Stringable
1313
{
1414
private CurrencyEntity $currency;
1515
private NumberFormatter $numberFormatter;

0 commit comments

Comments
 (0)