| 1 | <?php |
||
| 12 | class CreateStripeAccountRequest extends Request |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Define which Roles and/or Permissions has access to this request. |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $access = [ |
||
| 21 | 'permissions' => null |
||
| 22 | ]; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Id's that needs decoding before applying the validation rules. |
||
| 26 | * |
||
| 27 | * @var array |
||
| 28 | */ |
||
| 29 | protected $decode = [ |
||
| 30 | |||
| 31 | ]; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Defining the URL parameters (`/stores/999/items`) allows applying |
||
| 35 | * validation rules on them and allows accessing them like request data. |
||
| 36 | * |
||
| 37 | * @var array |
||
| 38 | */ |
||
| 39 | protected $urlParameters = [ |
||
| 40 | |||
| 41 | ]; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get the validation rules that apply to the request. |
||
| 45 | * |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | public function rules() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Determine if the user is authorized to make this request. |
||
| 58 | * |
||
| 59 | * @return bool |
||
| 60 | */ |
||
| 61 | public function authorize() |
||
| 67 | } |
||
| 68 |