Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | public function boot(Dispatcher $dispatcher) |
||
|
|||
32 | { |
||
33 | // Add export form to project sidebar |
||
34 | 63 | \View::composer('layouts/sidebar/project', function (View $view) { |
|
35 | 36 | $exportForm = new ExportIssues(); |
|
36 | 36 | $exportForm->setup(['project' => $view->project]); |
|
37 | 36 | $view->with('exportForm', $exportForm); |
|
38 | 63 | }); |
|
39 | 63 | } |
|
40 | |||
48 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.