Commit 198b54d4 authored by Taylor Otwell's avatar Taylor Otwell

Simplify providers.

parent 78c932f6
<?php namespace App\Providers; <?php namespace App\Providers;
use Exception; use App, Log, Exception;
use Illuminate\Contracts\Logging\Log;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\Exception\Handler;
class ErrorServiceProvider extends ServiceProvider { class ErrorServiceProvider extends ServiceProvider {
...@@ -14,7 +12,7 @@ class ErrorServiceProvider extends ServiceProvider { ...@@ -14,7 +12,7 @@ class ErrorServiceProvider extends ServiceProvider {
* @param Log $log * @param Log $log
* @return void * @return void
*/ */
public function boot(Handler $handler, Log $log) public function boot()
{ {
// Here you may handle any errors that occur in your application, including // Here you may handle any errors that occur in your application, including
// logging them or displaying custom views for specific errors. You may // logging them or displaying custom views for specific errors. You may
...@@ -22,9 +20,9 @@ class ErrorServiceProvider extends ServiceProvider { ...@@ -22,9 +20,9 @@ class ErrorServiceProvider extends ServiceProvider {
// exceptions. If nothing is returned, the default error view is // exceptions. If nothing is returned, the default error view is
// shown, which includes a detailed stack trace during debug. // shown, which includes a detailed stack trace during debug.
$handler->error(function(Exception $e, $code) use ($log) App::error(function(Exception $e)
{ {
$log->error($e); Log::error($e);
}); });
} }
......
<?php namespace App\Providers; <?php namespace App\Providers;
use Illuminate\Contracts\Logging\Log; use Log;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
class LogServiceProvider extends ServiceProvider { class LogServiceProvider extends ServiceProvider {
...@@ -11,9 +11,9 @@ class LogServiceProvider extends ServiceProvider { ...@@ -11,9 +11,9 @@ class LogServiceProvider extends ServiceProvider {
* @param Log $log * @param Log $log
* @return void * @return void
*/ */
public function boot(Log $log) public function boot()
{ {
$log->useFiles(storage_path().'/logs/laravel.log'); Log::useFiles(storage_path().'/logs/laravel.log');
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment