ソースを参照

Removing extra space after boolean cast

Jose Lorenzo Rodriguez 14 年 前
コミット
d588758783
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lib/Cake/Cache/Engine/RedisEngine.php

+ 1 - 1
lib/Cake/Cache/Engine/RedisEngine.php

@@ -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);
 	}
 
 /**