Skip to content

Commit

Permalink
Revert "Correcting return"
Browse files Browse the repository at this point in the history
This reverts commit 6e09e64.
  • Loading branch information
phpnut committed Dec 15, 2015
1 parent 1a3598c commit 975262b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Cache/Cache.php
Expand Up @@ -275,10 +275,10 @@ public static function set($settings = array(), $value = null, $config = 'defaul
*
* @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);
}

/**
Expand Down

0 comments on commit 975262b

Please sign in to comment.