mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
Removing extra space after boolean cast
This commit is contained in:
parent
f105abde4e
commit
d588758783
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ class RedisEngine extends CacheEngine {
|
||||||
* @return boolean success
|
* @return boolean success
|
||||||
**/
|
**/
|
||||||
public function clearGroup($group) {
|
public function clearGroup($group) {
|
||||||
return (bool) $this->_Redis->incr($this->settings['prefix'] . $group);
|
return (bool)$this->_Redis->incr($this->settings['prefix'] . $group);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue