| 1 | <?php |
||
| 9 | class AccountStore extends FormRequest |
||
| 10 | { |
||
| 11 | protected $users; |
||
| 12 | public function __construct(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null, Users $users) |
||
| 17 | /** |
||
| 18 | * Determine if the user is authorized to make this request. |
||
| 19 | * |
||
| 20 | * @return bool |
||
| 21 | */ |
||
| 22 | public function authorize() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get the validation rules that apply to the request. |
||
| 29 | * |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | public function rules() |
||
| 42 | } |
||
| 43 |