| 1 | <?php |
||
| 14 | class DeleteUserRequest extends Request |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Get the validation rules that apply to the request. |
||
| 19 | * |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | public function rules() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Determine if the user is authorized to make this request. |
||
| 31 | * |
||
| 32 | * @param \Illuminate\Contracts\Auth\Access\Gate $gate |
||
| 33 | * |
||
| 34 | * @return bool |
||
| 35 | */ |
||
| 36 | public function authorize(Gate $gate, GetAuthenticatedUserTask $getAuthenticatedUserTask) |
||
| 40 | } |
||
| 41 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.