User.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. namespace Mapping\Fixture\Yaml;
  3. class User
  4. {
  5. private $id;
  6. private $password;
  7. private $username;
  8. private $company;
  9. private $localeField;
  10. /**
  11. * Get id
  12. *
  13. * @return integer $id
  14. */
  15. public function getId()
  16. {
  17. return $this->id;
  18. }
  19. /**
  20. * Set password
  21. *
  22. * @param string $password
  23. */
  24. public function setPassword($password)
  25. {
  26. $this->password = $password;
  27. }
  28. /**
  29. * Get password
  30. *
  31. * @return string $password
  32. */
  33. public function getPassword()
  34. {
  35. return $this->password;
  36. }
  37. /**
  38. * Set username
  39. *
  40. * @param string $username
  41. */
  42. public function setUsername($username)
  43. {
  44. $this->username = $username;
  45. }
  46. /**
  47. * Get username
  48. *
  49. * @return string $username
  50. */
  51. public function getUsername()
  52. {
  53. return $this->username;
  54. }
  55. /**
  56. * Set company
  57. *
  58. * @param $company
  59. */
  60. public function setCompany($company)
  61. {
  62. $this->company = $company;
  63. }
  64. /**
  65. * Get company
  66. *
  67. * @return string $company
  68. */
  69. public function getCompany()
  70. {
  71. return $this->company;
  72. }
  73. }