From e3586f6239057cc5e9258105630b1643af1dfd21 Mon Sep 17 00:00:00 2001 From: Stoyan Kyosev Date: Wed, 31 Aug 2016 14:37:03 +0300 Subject: [PATCH] Fix typo in CartLocaleChangeHandler Exception --- .../Bundle/CoreBundle/Handler/CartLocaleChangeHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } }