Removing extra space after boolean cast

This commit is contained in:
Jose Lorenzo Rodriguez 2012-04-11 23:22:38 -04:30
parent f105abde4e
commit d588758783

View file

@ -200,7 +200,7 @@ class RedisEngine extends CacheEngine {
* @return boolean success
**/
public function clearGroup($group) {
return (bool) $this->_Redis->incr($this->settings['prefix'] . $group);
return (bool)$this->_Redis->incr($this->settings['prefix'] . $group);
}
/**