Skip to content

Commit

Permalink
NTR: Cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalij Mik committed Dec 9, 2024
1 parent 0907311 commit 0fba0e1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Components/OrderExpiration/ExpireAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ public function __construct(
OrderExpireService $orderExpireService,
SettingsService $settingsService,
LoggerInterface $logger
)
{
) {
$this->orderRepository = $orderRepository;
$this->salesChannelRepository = $salesChannelRepository;
$this->orderExpireService = $orderExpireService;
Expand Down Expand Up @@ -87,7 +86,7 @@ private function expireOrdersInSalesChannel(SalesChannelEntity $salesChannelEnti
$criteria->addSorting(new FieldSorting('orderDateTime', FieldSorting::DESCENDING));
$criteria->setLimit(10);

$this->logger->debug('Search for orders with payment status in progress older than date',[
$this->logger->debug('Search for orders with payment status in progress older than date', [
'date' => $date->format(Defaults::STORAGE_DATE_TIME_FORMAT),
]);

Expand Down

0 comments on commit 0fba0e1

Please sign in to comment.