Skip to content

Commit

Permalink
cs correction
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Jun 26, 2014
1 parent 8e9c85e commit 73dcb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/ConsoleErrorHandler.php
Expand Up @@ -59,7 +59,7 @@ public function handleException(Exception $exception) {
$exception->getTraceAsString()
));
$code = $exception->getCode();
$code = ($code && is_integer($code)) ? $code : 1;
$code = ($code && is_int($code)) ? $code : 1;
return $this->_stop($code);
}

Expand Down

0 comments on commit 73dcb2c

Please sign in to comment.