Is there anyway to disable the laravel error handler all together?
I want to simply display standard PHP errors, not the Who
Exception handling is hardcoded into the Application
class. You can override the classes in your bootstrap/start.php
file:
class ExceptionHandler {
public function handleException($exception) {
throw $exception;
}
public function handleConsole($exception) {
throw $exception;
}
}
class MyApplication extends Illuminate\Foundation\Application
{
public function registerExceptionProvider() {}
public function startExceptionHandling() {}
}
$app = new MyApplication;
It should go without saying that this is definitely not encouraged.