| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class UserRoleCrudRequest extends FormRequest |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Determine if the user is authorized to make this request. |
||
| 11 | * |
||
| 12 | * @return boolean |
||
| 13 | */ |
||
| 14 | public function authorize() : bool |
||
| 15 | { |
||
| 16 | // Only allow updates if the user is a logged in Admin. |
||
| 17 | return backpack_auth()->check(); |
||
|
|
|||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get the validation rules that apply to the request. |
||
| 22 | * |
||
| 23 | * @return string[] |
||
| 24 | */ |
||
| 25 | public function rules() : array |
||
| 29 | ]; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the validation messages that apply to the request. |
||
| 34 | * |
||
| 35 | * @return string[] |
||
| 36 | */ |
||
| 37 | public function messages() : array |
||
| 42 | ]; |
||
| 43 | } |
||
| 45 |