12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace Mapping\Fixture\Yaml;
- class User
- {
- private $id;
- private $password;
- private $username;
- private $company;
- private $localeField;
- /**
- * Get id
- *
- * @return integer $id
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set password
- *
- * @param string $password
- */
- public function setPassword($password)
- {
- $this->password = $password;
- }
- /**
- * Get password
- *
- * @return string $password
- */
- public function getPassword()
- {
- return $this->password;
- }
- /**
- * Set username
- *
- * @param string $username
- */
- public function setUsername($username)
- {
- $this->username = $username;
- }
- /**
- * Get username
- *
- * @return string $username
- */
- public function getUsername()
- {
- return $this->username;
- }
- /**
- * Set company
- *
- * @param $company
- */
- public function setCompany($company)
- {
- $this->company = $company;
- }
- /**
- * Get company
- *
- * @return string $company
- */
- public function getCompany()
- {
- return $this->company;
- }
- }
|