User.php 913 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace Mapping\Fixture\Yaml;
  3. class User
  4. {
  5. private $id;
  6. private $password;
  7. private $username;
  8. private $locale;
  9. /**
  10. * Get id
  11. *
  12. * @return integer $id
  13. */
  14. public function getId()
  15. {
  16. return $this->id;
  17. }
  18. /**
  19. * Set password
  20. *
  21. * @param string $password
  22. */
  23. public function setPassword($password)
  24. {
  25. $this->password = $password;
  26. }
  27. /**
  28. * Get password
  29. *
  30. * @return string $password
  31. */
  32. public function getPassword()
  33. {
  34. return $this->password;
  35. }
  36. /**
  37. * Set username
  38. *
  39. * @param string $username
  40. */
  41. public function setUsername($username)
  42. {
  43. $this->username = $username;
  44. }
  45. /**
  46. * Get username
  47. *
  48. * @return string $username
  49. */
  50. public function getUsername()
  51. {
  52. return $this->username;
  53. }
  54. }