Skip to content

Commit 6a4fa0d

Browse files
committed
[OP-551] Compatibility adjustments
1 parent 9eb374b commit 6a4fa0d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
php: [ "8.1", "8.2", "8.3" ]
25+
php: [ "8.2", "8.3" ]
2626
symfony: ["^5.4", "^6.4"]
2727
sylius: [ "^2.0" ]
2828
node: [ "20.x" ]

src/Command/RemoveGuestWishlistsCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ protected function configure(): void
3030
{
3131
$this
3232
->setDescription('Removes guest wishlists')
33+
->setName(self::$defaultName)
3334
->addOption(
3435
'date',
3536
'd',

src/Controller/Action/AddSelectedProductsToCartAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private function getExceptionMessage(HandlerFailedException $exception): string
7777
return $exception->getMessage();
7878
}
7979

80-
private function getFlashBag(): FlashBagInterface
80+
protected function getFlashBag(): FlashBagInterface
8181
{
8282
/** @var Session $session */
8383
$session = $this->requestStack->getSession();

0 commit comments

Comments
 (0)