diff --git a/src/Sylius/Bundle/CoreBundle/Handler/CartLocaleChangeHandler.php b/src/Sylius/Bundle/CoreBundle/Handler/CartLocaleChangeHandler.php index 84bdf66610..c45415a413 100644 --- a/src/Sylius/Bundle/CoreBundle/Handler/CartLocaleChangeHandler.php +++ b/src/Sylius/Bundle/CoreBundle/Handler/CartLocaleChangeHandler.php @@ -56,7 +56,7 @@ final class CartLocaleChangeHandler implements LocaleChangeHandlerInterface $this->cartManager->persist($cart); $this->cartManager->flush(); } catch (CartNotFoundException $exception) { - throw new HandleException(self::class, 'Sylius was unable to found cart.', $exception); + throw new HandleException(self::class, 'Sylius was unable to find cart.', $exception); } } }