Revert "Correcting return"

This reverts commit 6e09e64432.
This commit is contained in:
Larry E. Masters 2015-12-14 19:30:16 -06:00
parent 1a3598c3f4
commit 975262b03e

View file

@ -275,10 +275,10 @@ class Cache {
*
* @param string $config [optional] The config name you wish to have garbage collected. Defaults to 'default'
* @param int $expires [optional] An expires timestamp. Defaults to NULL
* @return bool
* @return void
*/
public static function gc($config = 'default', $expires = null) {
return static::$_engines[$config]->gc($expires);
static::$_engines[$config]->gc($expires);
}
/**