| 1 | <?php |
||
| 15 | class UpdateUserRequest extends Request |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get the validation rules that apply to the request. |
||
| 20 | * |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public function rules() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Determine if the user is authorized to make this request. |
||
| 34 | * |
||
| 35 | * @param \Illuminate\Contracts\Auth\Access\Gate $gate |
||
| 36 | * |
||
| 37 | * @return bool |
||
| 38 | */ |
||
| 39 | public function authorize(Gate $gate, GetAuthenticatedUserTask $getAuthenticatedUserTask) |
||
| 43 | } |
||
| 44 |
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.