From ce8c230e727ffe14564ccd1da5cb5be8734bc57f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 22 Aug 2011 22:21:51 -0500 Subject: [PATCH] tweak crypter exception message. --- laravel/crypter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/crypter.php b/laravel/crypter.php index 86452185..ec72c5c6 100644 --- a/laravel/crypter.php +++ b/laravel/crypter.php @@ -39,7 +39,7 @@ public function __construct($cipher, $mode, $key) if (trim((string) $this->key) === '') { - throw new \Exception('The encryption class can not be used without an encryption key.'); + throw new \Exception('The encryption class may not be used without an encryption key.'); } }