Fix delete space, restored return

This commit is contained in:
LustyRain 2017-10-04 20:40:57 +09:00
parent 8bb07c0fd7
commit 1f09318724
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ class ConsoleErrorHandler {
)); ));
$code = $exception->getCode(); $code = $exception->getCode();
$code = ($code && is_int($code)) ? $code : 1; $code = ($code && is_int($code)) ? $code : 1;
$this->_stop($code); return $this->_stop($code);
} }
/** /**

View file

@ -582,7 +582,7 @@ class File {
public function clearStatCache($all = false) { public function clearStatCache($all = false) {
if ($all === false && version_compare(PHP_VERSION, '5.3.0') >= 0) { if ($all === false && version_compare(PHP_VERSION, '5.3.0') >= 0) {
clearstatcache(true, $this->path); clearstatcache(true, $this->path);
return ; return;
} }
clearstatcache(); clearstatcache();