TestMemberRequest.php 528 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\common\requests;
  3. use app\common\requests\Request;
  4. class TestMemberRequest extends Request
  5. {
  6. /**
  7. * Determine if the user is authorized to make this request.
  8. *
  9. * @return bool
  10. */
  11. public function authorize()
  12. {
  13. return false;
  14. }
  15. /**
  16. * Get the validation rules that apply to the request.
  17. *
  18. * @return array
  19. */
  20. public function rules()
  21. {
  22. return [
  23. 'name'=>'required',
  24. 'email'=>'required',
  25. ];
  26. }
  27. }