We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 7 | class CampaignController extends Controller |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Display a listing of the resource. |
||
| 11 | * |
||
| 12 | * @return \Illuminate\Http\Response |
||
| 13 | */ |
||
| 14 | public function index() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Show the form for creating a new resource. |
||
| 21 | * |
||
| 22 | * @return \Illuminate\Http\Response |
||
| 23 | */ |
||
| 24 | public function create() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Store a newly created resource in storage. |
||
| 31 | * |
||
| 32 | * @param \Illuminate\Http\Request $request |
||
| 33 | * @return \Illuminate\Http\Response |
||
| 34 | */ |
||
| 35 | public function store(Request $request) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Display the specified resource. |
||
| 42 | * |
||
| 43 | * @param int $id |
||
| 44 | * @return \Illuminate\Http\Response |
||
| 45 | */ |
||
| 46 | public function show($id) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Show the form for editing the specified resource. |
||
| 53 | * |
||
| 54 | * @param int $id |
||
| 55 | * @return \Illuminate\Http\Response |
||
| 56 | */ |
||
| 57 | public function edit($id) |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Update the specified resource in storage. |
||
| 64 | * |
||
| 65 | * @param \Illuminate\Http\Request $request |
||
| 66 | * @param int $id |
||
| 67 | * @return \Illuminate\Http\Response |
||
| 68 | */ |
||
| 69 | public function update(Request $request, $id) |
||
| 73 | |||
| 74 | /** |
||
| 75 | * Remove the specified resource from storage. |
||
| 76 | * |
||
| 77 | * @param int $id |
||
| 78 | * @return \Illuminate\Http\Response |
||
| 79 | */ |
||
| 80 | public function destroy($id) |
||
| 84 | } |
||
| 85 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.