We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 17 | class BackendController extends PluginEngine |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Display a listing of the resource. |
||
| 21 | * |
||
| 22 | * @return \Illuminate\Http\Response |
||
|
|
|||
| 23 | */ |
||
| 24 | public function index() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Show the form for creating a new resource. |
||
| 31 | * |
||
| 32 | * @return \Illuminate\Http\Response |
||
| 33 | */ |
||
| 34 | public function create() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Store a newly created resource in storage. |
||
| 41 | * |
||
| 42 | * @param \Illuminate\Http\Request $request |
||
| 43 | * @return \Illuminate\Http\Response |
||
| 44 | */ |
||
| 45 | public function store(Request $request) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Display the specified resource. |
||
| 52 | * |
||
| 53 | * @param int $id |
||
| 54 | * @return \Illuminate\Http\Response |
||
| 55 | */ |
||
| 56 | public function show($id) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Show the form for editing the specified resource. |
||
| 63 | * |
||
| 64 | * @param int $id |
||
| 65 | * @return \Illuminate\Http\Response |
||
| 66 | */ |
||
| 67 | public function edit($id) |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Update the specified resource in storage. |
||
| 74 | * |
||
| 75 | * @param \Illuminate\Http\Request $request |
||
| 76 | * @param int $id |
||
| 77 | * @return \Illuminate\Http\Response |
||
| 78 | */ |
||
| 79 | public function update(Request $request, $id) |
||
| 83 | |||
| 84 | /** |
||
| 85 | * Remove the specified resource from storage. |
||
| 86 | * |
||
| 87 | * @param int $id |
||
| 88 | * @return \Illuminate\Http\Response |
||
| 89 | */ |
||
| 90 | public function destroy($id) |
||
| 94 | } |
||
| 95 |
This check compares the return type specified in the
@returnannotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.