3 namespace Rapsys\AirBundle\Entity
;
5 use Rapsys\AirBundle\Entity\Location
;
6 use Rapsys\AirBundle\Entity\User
;
25 protected $description;
38 * @var \Rapsys\UserBundle\Entity\Location
43 * @var \Rapsys\UserBundle\Entity\User
52 public function getId() {
59 * @param string $locale
63 public function setLocale($locale) {
64 $this->locale
= $locale;
74 public function getLocale() {
81 * @param string $description
85 public function setDescription($description) {
86 $this->description
= $description;
96 public function getDescription() {
97 return $this->description
;
103 * @param \DateTime $created
107 public function setCreated($created) {
108 $this->created
= $created;
118 public function getCreated() {
119 return $this->created
;
125 * @param \DateTime $updated
129 public function setUpdated($updated) {
130 $this->updated
= $updated;
140 public function getUpdated() {
141 return $this->updated
;
147 public function setLocation(Location
$location) {
148 $this->location
= $location;
156 public function getLocation() {
157 return $this->location
;
163 public function setUser(User
$user) {
172 public function getUser() {