Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | protected function getEnvironmentSetUp($app) |
||
32 | { |
||
33 | $app['config']->set('menus', [ |
||
34 | 'styles' => [ |
||
35 | 'navbar' => \Nwidart\Menus\Presenters\Bootstrap\NavbarPresenter::class, |
||
36 | 'navbar-right' => \Nwidart\Menus\Presenters\Bootstrap\NavbarRightPresenter::class, |
||
37 | 'nav-pills' => \Nwidart\Menus\Presenters\Bootstrap\NavPillsPresenter::class, |
||
38 | 'nav-tab' => \Nwidart\Menus\Presenters\Bootstrap\NavTabPresenter::class, |
||
39 | 'sidebar' => \Nwidart\Menus\Presenters\Bootstrap\SidebarMenuPresenter::class, |
||
40 | 'navmenu' => \Nwidart\Menus\Presenters\Bootstrap\NavMenuPresenter::class, |
||
41 | ], |
||
42 | |||
43 | 'ordering' => false, |
||
44 | ]); |
||
45 | } |
||
46 | } |
||
47 |