123456789101112131415161718192021222324252627282930313233343536 |
- <?php namespace Providers;
- use Illuminate\Support\ServiceProvider;
- class ErrorServiceProvider extends ServiceProvider {
-
- public function boot()
- {
-
-
-
-
-
- $this->app->error(function(\Exception $exception, $code)
- {
- $this->app['log']->error($exception);
- });
- }
-
- public function register()
- {
-
- }
- }
|