mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Forcing bool
This commit is contained in:
parent
fac95baee7
commit
26ea74cbcf
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ class Cache {
|
|||
* @return void
|
||||
*/
|
||||
public static function gc($config = 'default', $expires = null) {
|
||||
return (bool)static::$_engines[$config]->gc($expires);
|
||||
return static::$_engines[$config]->gc($expires);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue