Skip to content

Commit

Permalink
Fix extra space
Browse files Browse the repository at this point in the history
Fix extra space reported by @thePanz on your PR.
See FriendsOfSymfony1#62
  • Loading branch information
regisnew authored Oct 2, 2019
1 parent c80b23d commit 8d31dbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/Cache/Memcached.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.');
Expand Down Expand Up @@ -139,4 +139,4 @@ protected function _getCacheKeys()
}
return $keys;
}
}
}

0 comments on commit 8d31dbe

Please sign in to comment.