Fix typo in CartLocaleChangeHandler Exception

This commit is contained in:
Stoyan Kyosev 2016-08-31 14:37:03 +03:00 committed by GitHub
parent a28ef4b1b7
commit e3586f6239

View file

@ -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);
}
}
}