| 1 | <?php | ||
| 14 | class UserStoreEvent extends FormRequest | ||
| 15 | { | ||
| 16 | use ChecksPermissions; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * Determine if the user is authorized to make this request. | ||
| 20 | * | ||
| 21 | * @return bool | ||
| 22 | */ | ||
| 23 | public function authorize() | ||
| 27 | |||
| 28 | /** | ||
| 29 | * Get the validation rules that apply to the request. | ||
| 30 | * | ||
| 31 | * @return array | ||
| 32 | */ | ||
| 33 | public function rules() | ||
| 40 | } | ||
| 41 |