Browse Source

Fixed CS error

Jose Lorenzo Rodriguez 11 years ago
parent
commit
078fcfa49d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Error/BaseErrorHandler.php

+ 2 - 1
src/Error/BaseErrorHandler.php

@@ -17,8 +17,8 @@ namespace Cake\Error;
 use Cake\Core\Configure;
 use Cake\Error\Debugger;
 use Cake\Log\Log;
-use Cake\Routing\Router;
 use Cake\Network\Exception\InternalErrorException;
+use Cake\Routing\Router;
 
 /**
  * Base error handler that provides logic common to the CLI + web
@@ -184,6 +184,7 @@ abstract class BaseErrorHandler {
 			'error' => 'Fatal Error',
 		];
 		$this->_logError(LOG_ERR, $data);
+
 		$this->handleException(new FatalErrorException($description, 500, $file, $line));
 		return true;
 	}