| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 8 | class ComposerServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Register bindings in the container. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function boot() |
||
| 16 | { |
||
| 17 | View::composer( |
||
| 18 | 'layouts.app', |
||
| 19 | 'App\Http\ViewComposers\ThemeComposer' |
||
| 20 | ); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Register the service provider. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function register() |
||
| 30 | // |
||
| 31 | } |
||
| 33 |