| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 19 | class UpdateCurrencyRequest extends FormRequest | ||
| 20 | { | ||
| 21 | /** | ||
| 22 | * Determine if the user is authorized to make this request. | ||
| 23 | * | ||
| 24 | * @return bool | ||
| 25 | */ | ||
| 26 | public function authorize() | ||
| 27 |     { | ||
| 28 | return true; | ||
| 29 | } | ||
| 30 | |||
| 31 | /** | ||
| 32 | * Get the validation rules that apply to the request. | ||
| 33 | * | ||
| 34 | * @return array | ||
| 35 | */ | ||
| 36 | public function rules() | ||
| 39 | } | ||
| 40 | } | ||
| 41 |