| 1 | <?php |
||
| 8 | class CollectionsController extends Controller |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Display a listing of the resource. |
||
| 12 | * |
||
| 13 | * @return Response |
||
| 14 | */ |
||
| 15 | public function index() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Display the specified resource. |
||
| 24 | * |
||
| 25 | * @param int $id |
||
| 26 | * |
||
| 27 | * @return Response |
||
| 28 | */ |
||
| 29 | public function show($id) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Show the form for creating a new resource. |
||
| 40 | * |
||
| 41 | * @return Response |
||
| 42 | */ |
||
| 43 | public function create() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Store a newly created resource in storage. |
||
| 50 | * |
||
| 51 | * @return Response |
||
| 52 | */ |
||
| 53 | public function store(CreateCollectionRequest $request) |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Show the form for editing the specified resource. |
||
| 60 | * |
||
| 61 | * @param int $id |
||
| 62 | * |
||
| 63 | * @return Response |
||
| 64 | */ |
||
| 65 | public function edit($id) |
||
| 69 | |||
| 70 | /** |
||
| 71 | * Update the specified resource in storage. |
||
| 72 | * |
||
| 73 | * @param int $id |
||
| 74 | * |
||
| 75 | * @return Response |
||
| 76 | */ |
||
| 77 | public function update($id) |
||
| 81 | |||
| 82 | /** |
||
| 83 | * Remove the specified resource from storage. |
||
| 84 | * |
||
| 85 | * @param int $id |
||
| 86 | * |
||
| 87 | * @return Response |
||
| 88 | */ |
||
| 89 | public function destroy($id) |
||
| 93 | } |
||
| 94 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.