From 635ba52a6942088c6d1697cacd96b987d5337314 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 16 Nov 2011 12:58:24 -0600 Subject: [PATCH] Shorted a long exception message. --- laravel/memcached.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/memcached.php b/laravel/memcached.php index 8565ea23..bcb9e911 100644 --- a/laravel/memcached.php +++ b/laravel/memcached.php @@ -53,10 +53,10 @@ public static function connect($servers) if ($memcache->getVersion() === false) { - throw new \RuntimeException('Could not establish memcached connection. Please verify your configuration.'); + throw new \RuntimeException('Could not establish memcached connection.'); } return $memcache; } -} +} \ No newline at end of file