| 1 | <?php |
||
| 14 | class NoteController extends AbstractApiController |
||
| 15 | { |
||
| 16 | use DispatchesJobs; |
||
| 17 | |||
| 18 | |||
| 19 | public function getNotes() |
||
| 23 | |||
| 24 | public function getNote(Note $note) |
||
| 28 | /** |
||
| 29 | * Create a new note. |
||
| 30 | * |
||
| 31 | * @param \Illuminate\Contracts\Auth\Guard $auth |
||
| 32 | * |
||
| 33 | * @return \Illuminate\Http\JsonResponse |
||
| 34 | */ |
||
| 35 | public function postNotes(Guard $auth) |
||
| 51 | } |
||
| 52 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.