| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class ComposerServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Bootstrap services. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function boot() |
||
| 16 | { |
||
| 17 | View::composer( |
||
| 18 | '*', 'App\Http\ViewComposers\SettingsComposer' |
||
| 19 | ); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Register services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function register() |
||
| 29 | // |
||
| 30 | } |
||
| 32 |