From 8d31dbe54ff6d50f099ca4f4a287390e38508670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20R=C3=A9gis=20Palmeira?= Date: Wed, 2 Oct 2019 00:43:14 -0300 Subject: [PATCH] Fix extra space Fix extra space reported by @thePanz on your PR. See https://github.com/FriendsOfSymfony1/doctrine1/pull/62 --- lib/Doctrine/Cache/Memcached.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Cache/Memcached.php b/lib/Doctrine/Cache/Memcached.php index 9e823ef87..82067982d 100644 --- a/lib/Doctrine/Cache/Memcached.php +++ b/lib/Doctrine/Cache/Memcached.php @@ -43,7 +43,7 @@ class Doctrine_Cache_Memcached extends Doctrine_Cache_Driver * * @param array $options associative array of cache driver options */ - public function __construct($options = array()) + public function __construct($options = array()) { if ( ! extension_loaded('memcached')) { throw new Doctrine_Cache_Exception('In order to use Memcached driver, the memcached extension must be loaded.'); @@ -139,4 +139,4 @@ protected function _getCacheKeys() } return $keys; } -} \ No newline at end of file +}