mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
cs correction
This commit is contained in:
parent
8e9c85ef61
commit
73dcb2cb91
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class ConsoleErrorHandler {
|
|||
$exception->getTraceAsString()
|
||||
));
|
||||
$code = $exception->getCode();
|
||||
$code = ($code && is_integer($code)) ? $code : 1;
|
||||
$code = ($code && is_int($code)) ? $code : 1;
|
||||
return $this->_stop($code);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue