This commit is contained in:
Sam Georges 2014-05-15 08:35:41 +10:00
parent 64f3a87e01
commit f208e8d40d
1 changed files with 5 additions and 2 deletions

View File

@ -46,8 +46,11 @@ class CacheClear extends ClearCommand
*/
public static function fireInternal()
{
$command = App::make('System\Console\CacheClear');
$command->fire();
try {
$command = App::make('System\Console\CacheClear');
$command->fire();
}
catch (\Exception $ex) {}
}
}