@@ -12,20 +12,20 @@ discard block |
||
| 12 | 12 | class UnderstandLaravel5ServiceProvider extends ServiceProvider |
| 13 | 13 | { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Indicates if loading of the provider is deferred. |
|
| 17 | - * |
|
| 18 | - * @var bool |
|
| 19 | - */ |
|
| 20 | - protected $defer = false; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Bootstrap the application events. |
|
| 24 | - * |
|
| 25 | - * @return void |
|
| 26 | - */ |
|
| 27 | - public function boot() |
|
| 28 | - { |
|
| 15 | + /** |
|
| 16 | + * Indicates if loading of the provider is deferred. |
|
| 17 | + * |
|
| 18 | + * @var bool |
|
| 19 | + */ |
|
| 20 | + protected $defer = false; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Bootstrap the application events. |
|
| 24 | + * |
|
| 25 | + * @return void |
|
| 26 | + */ |
|
| 27 | + public function boot() |
|
| 28 | + { |
|
| 29 | 29 | $configPath = __DIR__ . '/../../config/understand-laravel.php'; |
| 30 | 30 | $this->publishes([$configPath => config_path('understand-laravel.php')], 'config'); |
| 31 | 31 | $enabled = $this->app['config']->get('understand-laravel.enabled'); |
@@ -41,14 +41,14 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $this->registerBladeDirectives(); |
| 44 | - } |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | 47 | * Register Blade directives. |
| 48 | 48 | * |
| 49 | 49 | * @return void |
| 50 | 50 | */ |
| 51 | - protected function registerBladeDirectives() |
|
| 51 | + protected function registerBladeDirectives() |
|
| 52 | 52 | { |
| 53 | 53 | // L5.0 does not support custom directives |
| 54 | 54 | if ($this->detectLaravelVersion(['5.0'])) |
@@ -101,14 +101,14 @@ discard block |
||
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - /** |
|
| 105 | - * Register the service provider. |
|
| 106 | - * |
|
| 107 | - * @return void |
|
| 108 | - */ |
|
| 109 | - public function register() |
|
| 110 | - { |
|
| 111 | - $this->registerConfig(); |
|
| 104 | + /** |
|
| 105 | + * Register the service provider. |
|
| 106 | + * |
|
| 107 | + * @return void |
|
| 108 | + */ |
|
| 109 | + public function register() |
|
| 110 | + { |
|
| 111 | + $this->registerConfig(); |
|
| 112 | 112 | $this->registerFieldProvider(); |
| 113 | 113 | $this->registerJsProvider(); |
| 114 | 114 | $this->registerDataCollector(); |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | $this->registerLogger(); |
| 117 | 117 | $this->registerExceptionEncoder(); |
| 118 | 118 | $this->registerEventLoggers(); |
| 119 | - } |
|
| 119 | + } |
|
| 120 | 120 | |
| 121 | 121 | /** |
| 122 | 122 | * Register config |