Skip to content

Commit

Permalink
Revert "Forcing bool"
Browse files Browse the repository at this point in the history
This reverts commit 26ea74c.
  • Loading branch information
phpnut committed Dec 15, 2015
1 parent dd211e9 commit 572ca14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Cache/Cache.php
Expand Up @@ -278,7 +278,7 @@ public static function set($settings = array(), $value = null, $config = 'defaul
* @return void
*/
public static function gc($config = 'default', $expires = null) {
return static::$_engines[$config]->gc($expires);
return (bool)static::$_engines[$config]->gc($expires);
}

/**
Expand Down

0 comments on commit 572ca14

Please sign in to comment.