| 1 | <?php |
||
| 9 | class PortController extends Controller |
||
| 10 | { |
||
| 11 | use Helpers; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Constructor |
||
| 15 | */ |
||
| 16 | public function __construct(Request $request) { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Display a listing of the resource. |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Http\Response |
||
| 24 | */ |
||
| 25 | public function index() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Display the specified resource. |
||
| 35 | * |
||
| 36 | * @param int $id |
||
| 37 | * @return \Illuminate\Http\Response |
||
| 38 | */ |
||
| 39 | public function show($id) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Show the form for editing the specified resource. |
||
| 46 | * |
||
| 47 | * @param int $id |
||
| 48 | * @return \Illuminate\Http\Response |
||
| 49 | */ |
||
| 50 | public function edit($id) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Update the specified resource in storage. |
||
| 57 | * |
||
| 58 | * @param \Illuminate\Http\Request $request |
||
| 59 | * @param int $id |
||
| 60 | * @return \Illuminate\Http\Response |
||
| 61 | */ |
||
| 62 | public function update(Request $request, $id) |
||
| 66 | } |
||
| 67 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.