| 1 | <?php |
||
| 10 | class HomeController extends Controller |
||
| 11 | { |
||
| 12 | protected $service; |
||
| 13 | |||
| 14 | public function __construct(FinderService $service) |
||
| 20 | |||
| 21 | public function index(Request $request) |
||
|
|
|||
| 22 | { |
||
| 23 | |||
| 24 | // dd($results); |
||
| 25 | return view( |
||
| 26 | 'finder::finder.home' |
||
| 27 | // compact('results') |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function medias() |
||
| 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.