Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 71.43% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class CustomerController extends Controller |
||
14 | { |
||
15 | 2 | public function index() |
|
16 | { |
||
17 | 2 | return view('customers.index', [ |
|
18 | 2 | 'equipList' => (new GetEquipment)->getEquipmentArray(), |
|
19 | ]); |
||
20 | } |
||
21 | |||
22 | 2 | public function search(CustomerSearchRequest $request) |
|
25 | } |
||
26 | |||
27 | public function details($id, $name) |
||
32 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.