Total Complexity | 6 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class NLFileManager extends Tool |
||
12 | { |
||
13 | use Menuable; |
||
14 | |||
15 | /** |
||
16 | * Perform any tasks that need to happen when the tool is booted. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | 2 | public function boot() |
|
31 | 2 | ])), |
|
32 | 2 | ], |
|
33 | 2 | ]); |
|
34 | } |
||
35 | |||
36 | /** |
||
37 | * Build the menu that renders the navigation links for the tool. |
||
38 | * |
||
39 | * @param \Illuminate\Http\Request $request |
||
40 | * @return mixed |
||
41 | */ |
||
42 | 1 | public function menu(Request $request) |
|
53 |