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