| 1 | <?php | ||
| 12 | class LoggedUserUpdate extends FormRequest | ||
| 13 | { | ||
| 14 | /** | ||
| 15 | * Determine if the user is authorized to make this request. | ||
| 16 | * | ||
| 17 | * @return bool | ||
| 18 | */ | ||
| 19 | public function authorize() | ||
| 23 | |||
| 24 | /** | ||
| 25 | * Get the validation rules that apply to the request. | ||
| 26 | * | ||
| 27 | * @return array | ||
| 28 | */ | ||
| 29 | public function rules() | ||
| 37 | } | ||
| 38 |