*/
private $snippets;
+ /**
+ * @var \Doctrine\Common\Collections\Collection
+ */
+ private $users;
+
/**
* Constructor
*/
public function __construct() {
$this->sessions = new \Doctrine\Common\Collections\ArrayCollection();
$this->snippets = new \Doctrine\Common\Collections\ArrayCollection();
+ $this->users = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
return $this->snippets;
}
+ /**
+ * Add user
+ *
+ * @param \Rapsys\AirBundle\Entity\User $user
+ *
+ * @return Location
+ */
+ public function addUser(\Rapsys\AirBundle\Entity\User $user) {
+ $this->users[] = $user;
+
+ return $this;
+ }
+
+ /**
+ * Remove user
+ *
+ * @param \Rapsys\AirBundle\Entity\User $user
+ */
+ public function removeUser(\Rapsys\AirBundle\Entity\User $user) {
+ $this->users->removeElement($user);
+ }
+
+ /**
+ * Get users
+ *
+ * @return \Doctrine\Common\Collections\Collection
+ */
+ public function getUsers() {
+ return $this->users;
+ }
+
/**
* Returns a string representation of the location
*
/**
* @var \Doctrine\Common\Collections\Collection
*/
- private $subscribers;
+ private $locations;
/**
* @var \Doctrine\Common\Collections\Collection
*/
- private $subscriptions;
+ private $snippets;
/**
* @var \Doctrine\Common\Collections\Collection
*/
- private $snippets;
+ private $subscribers;
+
+ /**
+ * @var \Doctrine\Common\Collections\Collection
+ */
+ private $subscriptions;
/**
* Constructor
//Set collections
$this->applications = new \Doctrine\Common\Collections\ArrayCollection();
+ $this->locations = new \Doctrine\Common\Collections\ArrayCollection();
+ $this->snippets = new \Doctrine\Common\Collections\ArrayCollection();
$this->subscribers = new \Doctrine\Common\Collections\ArrayCollection();
$this->subscriptions = new \Doctrine\Common\Collections\ArrayCollection();
- $this->snippets = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
return $this->applications;
}
+ /**
+ * Add snippet
+ *
+ * @param \Rapsys\AirBundle\Entity\Snippet $snippet
+ *
+ * @return User
+ */
+ public function addSnippet(Snippet $snippet) {
+ $this->snippets[] = $snippet;
+
+ return $this;
+ }
+
+ /**
+ * Remove snippet
+ *
+ * @param \Rapsys\AirBundle\Entity\Snippet $snippet
+ */
+ public function removeSnippet(Snippet $snippet) {
+ $this->snippets->removeElement($snippet);
+ }
+
+ /**
+ * Get snippets
+ *
+ * @return \Doctrine\Common\Collections\Collection
+ */
+ public function getSnippets() {
+ return $this->snippets;
+ }
+
+ /**
+ * Add location
+ *
+ * @param \Rapsys\AirBundle\Entity\Location $location
+ *
+ * @return User
+ */
+ public function addLocation(Location $location) {
+ $this->locations[] = $location;
+
+ return $this;
+ }
+
+ /**
+ * Remove location
+ *
+ * @param \Rapsys\AirBundle\Entity\Location $location
+ */
+ public function removeLocation(Location $location) {
+ $this->locations->removeElement($location);
+ }
+
+ /**
+ * Get locations
+ *
+ * @return \Doctrine\Common\Collections\Collection
+ */
+ public function getLocations() {
+ return $this->locations;
+ }
+
/**
* Add subscriber
*
public function getSubscriptions() {
return $this->subscriptions;
}
-
- /**
- * Add snippet
- *
- * @param \Rapsys\AirBundle\Entity\Snippet $snippet
- *
- * @return User
- */
- public function addSnippet(Snippet $snippet) {
- $this->snippets[] = $snippet;
-
- return $this;
- }
-
- /**
- * Remove snippet
- *
- * @param \Rapsys\AirBundle\Entity\Snippet $snippet
- */
- public function removeSnippet(Snippet $snippet) {
- $this->snippets->removeElement($snippet);
- }
-
- /**
- * Get snippets
- *
- * @return \Doctrine\Common\Collections\Collection
- */
- public function getSnippets() {
- return $this->snippets;
- }
}