1 | <?php |
||
11 | class EmailVerificationProcessRequest extends FormRequest |
||
12 | { |
||
13 | /** |
||
14 | * Determine if the user is authorized to make this request. |
||
15 | * |
||
16 | * @throws \Cortex\Foundation\Exceptions\GenericException |
||
17 | * |
||
18 | * @return bool |
||
19 | */ |
||
20 | public function authorize() |
||
32 | |||
33 | /** |
||
34 | * Get the validation rules that apply to the request. |
||
35 | * |
||
36 | * @return array |
||
37 | */ |
||
38 | public function rules() |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected function getRedirectUrl() |
||
58 | } |
||
59 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.