Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1.  
  2. /**
  3. * Drivers type
  4. *
  5. * @pw_set nillable=false
  6. * @pw_element string $gender A string
  7. * @pw_set nillable=false
  8. * @pw_element string $title A string
  9. * @pw_set nillable=false
  10. * @pw_element string $forenames A string
  11. * @pw_set nillable=false
  12. * @pw_element string $surname A string
  13. * @pw_set nillable=false
  14. * @pw_element date $dateOfBirth Date with format of yyy-mm-dd
  15. * @pw_complex proposer The complex type name definition
  16. */
  17. class Drivers {
  18.  
  19. public $gender;
  20. public $title;
  21. public $forenames;
  22. public $surname;
  23. public $dateOfBirth;
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement