From 572ca1458b16a84fbfcf82f297df106c219f03a6 Mon Sep 17 00:00:00 2001 From: "Larry E. Masters" Date: Mon, 14 Dec 2015 19:30:52 -0600 Subject: [PATCH] Revert "Forcing bool" This reverts commit 26ea74cbcff8690f04686940dc7dff708744642d. --- lib/Cake/Cache/Cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Cache/Cache.php b/lib/Cake/Cache/Cache.php index 078f2f5390c..aa00f542dd8 100644 --- a/lib/Cake/Cache/Cache.php +++ b/lib/Cake/Cache/Cache.php @@ -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); } /**