Working on exception handling. WIP.

This commit is contained in:
Taylor Otwell
2014-11-03 16:45:26 -06:00
parent 3c614ac5d6
commit 1209ce7657
4 changed files with 74 additions and 2 deletions

View File

@@ -29,7 +29,9 @@ class Kernel extends ConsoleKernel {
}
catch (Exception $e)
{
$output->writeln((string) $e);
$this->reportException($e);
$this->renderException($output, $e);
return 1;
}