| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function persons(PersonRepository $personRepo) |
||
| 43 | { |
||
| 44 | // $orders = $personRepo->getByCustomer(auth()->id())->orderBy('created_at', 'DESC')->paginate(\Illuminate\Support\Facades\Config::get('siravel.pagination')); |
||
| 45 | $persons = $personRepo->all(); //->paginate(\Illuminate\Support\Facades\Config::get('siravel.pagination')); |
||
| 46 | |||
| 47 | return view('finder::finder.persons')->with('persons', $persons); |
||
| 48 | } |
||
| 49 | } |
||
| 50 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.