Skip to content

Commit

Permalink
Fix delete space, restored return
Browse files Browse the repository at this point in the history
  • Loading branch information
lustyrain committed Oct 4, 2017
1 parent 8bb07c0 commit 1f09318
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Console/ConsoleErrorHandler.php
Expand Up @@ -60,7 +60,7 @@ public function handleException($exception) {
));
$code = $exception->getCode();
$code = ($code && is_int($code)) ? $code : 1;
$this->_stop($code);
return $this->_stop($code);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Utility/File.php
Expand Up @@ -582,7 +582,7 @@ public function mime() {
public function clearStatCache($all = false) {
if ($all === false && version_compare(PHP_VERSION, '5.3.0') >= 0) {
clearstatcache(true, $this->path);
return ;
return;
}

clearstatcache();
Expand Down

0 comments on commit 1f09318

Please sign in to comment.