Add scheduled commands.

This commit is contained in:
Taylor Otwell
2014-11-18 22:48:38 -06:00
parent e3e7cc499f
commit a7e6a89c91
4 changed files with 39 additions and 38 deletions

View File

@@ -0,0 +1,31 @@
<?php namespace App\Exceptions;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler {
/**
* Report or log an exception.
*
* @param \Exception $e
* @return void
*/
public function report(Exception $e)
{
return parent::report($e);
}
/**
* Render an exception into a response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $e
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)
{
return parent::render($request, $e);
}
}