Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function getEnvironmentSetUp($app) |
||
25 | { |
||
26 | $app['config']->set('menus', [ |
||
27 | 'styles' => [ |
||
28 | 'navbar' => \KyleMassacre\Menus\Presenters\Bootstrap\NavbarPresenter::class, |
||
29 | 'navbar-right' => \KyleMassacre\Menus\Presenters\Bootstrap\NavbarRightPresenter::class, |
||
30 | 'nav-pills' => \KyleMassacre\Menus\Presenters\Bootstrap\NavPillsPresenter::class, |
||
31 | 'nav-tab' => \KyleMassacre\Menus\Presenters\Bootstrap\NavTabPresenter::class, |
||
32 | 'sidebar' => \KyleMassacre\Menus\Presenters\Bootstrap\SidebarMenuPresenter::class, |
||
33 | 'navmenu' => \KyleMassacre\Menus\Presenters\Bootstrap\NavMenuPresenter::class, |
||
34 | ], |
||
35 | 'ordering' => false, |
||
36 | ]); |
||
39 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.