| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class CountryRequest extends Request |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Determine if the user is authorized to make this request. |
||
| 9 | * |
||
| 10 | * @return bool |
||
| 11 | */ |
||
| 12 | public function authorize() |
||
| 13 | { |
||
| 14 | return true; |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Get the validation rules that apply to the request. |
||
| 19 | * |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | public function rules() |
||
| 26 | ]; |
||
| 27 | } |
||
| 29 |