From 8731ba465f1e5c2676330fc0da0c4bc5d492362c Mon Sep 17 00:00:00 2001 From: mnocon Date: Sat, 30 Nov 2024 09:56:47 +0000 Subject: [PATCH] PHP CS Fixes --- code_samples/api/commerce/src/Command/CartCommand.php | 2 +- .../calendar/src/Calendar/Holidays/EventSourceFactory.php | 2 +- .../back_office/calendar/src/Calendar/Holidays/EventType.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code_samples/api/commerce/src/Command/CartCommand.php b/code_samples/api/commerce/src/Command/CartCommand.php index 9b4a13c8202..c29d9904300 100644 --- a/code_samples/api/commerce/src/Command/CartCommand.php +++ b/code_samples/api/commerce/src/Command/CartCommand.php @@ -12,11 +12,11 @@ use Ibexa\Contracts\Cart\Value\EntryAddStruct; use Ibexa\Contracts\Cart\Value\EntryUpdateStruct; use Ibexa\Contracts\Checkout\Reorder\ReorderService; +use Ibexa\Contracts\Core\Repository\PermissionResolver; use Ibexa\Contracts\Core\Repository\UserService; use Ibexa\Contracts\OrderManagement\OrderServiceInterface; use Ibexa\Contracts\ProductCatalog\CurrencyServiceInterface; use Ibexa\Contracts\ProductCatalog\ProductServiceInterface; -use Ibexa\Contracts\Core\Repository\PermissionResolver; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; diff --git a/code_samples/back_office/calendar/src/Calendar/Holidays/EventSourceFactory.php b/code_samples/back_office/calendar/src/Calendar/Holidays/EventSourceFactory.php index 2c66b4f9272..cd20af912fd 100644 --- a/code_samples/back_office/calendar/src/Calendar/Holidays/EventSourceFactory.php +++ b/code_samples/back_office/calendar/src/Calendar/Holidays/EventSourceFactory.php @@ -4,9 +4,9 @@ use DateTime; use DateTimeInterface; -use Ibexa\Contracts\Calendar\EventSource\InMemoryEventSource; use Ibexa\Contracts\Calendar\EventCollection; use Ibexa\Contracts\Calendar\EventSource\EventSourceInterface; +use Ibexa\Contracts\Calendar\EventSource\InMemoryEventSource; class EventSourceFactory { diff --git a/code_samples/back_office/calendar/src/Calendar/Holidays/EventType.php b/code_samples/back_office/calendar/src/Calendar/Holidays/EventType.php index 4061d50cbaf..8ffcb8d7f31 100644 --- a/code_samples/back_office/calendar/src/Calendar/Holidays/EventType.php +++ b/code_samples/back_office/calendar/src/Calendar/Holidays/EventType.php @@ -2,8 +2,8 @@ namespace App\Calendar\Holidays; -use Ibexa\Contracts\Calendar\EventAction\EventActionCollection; use Ibexa\Contracts\Calendar\Event; +use Ibexa\Contracts\Calendar\EventAction\EventActionCollection; use Ibexa\Contracts\Calendar\EventType\EventTypeInterface; class EventType implements EventTypeInterface