- $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->applications = new ArrayCollection();
+ $this->dances = new ArrayCollection();
+ $this->locations = new ArrayCollection();
+ $this->snippets = new ArrayCollection();
+ $this->subscribers = new ArrayCollection();
+ $this->subscriptions = new ArrayCollection();
+ }
+
+ /**
+ * Set country
+ *
+ * @param Country $country
+ *
+ * @return User
+ */
+ public function setCountry(Country $country) {
+ $this->country = $country;
+
+ return $this;
+ }
+
+ /**
+ * Get country
+ *
+ * @return Country
+ */
+ public function getCountry() {
+ return $this->country;
+ }
+
+ /**
+ * Set city
+ *
+ * @param string $city
+ *
+ * @return User
+ */
+ public function setCity(?string $city): User {
+ $this->city = $city;
+
+ return $this;
+ }
+
+ /**
+ * Get city
+ *
+ * @return string
+ */
+ public function getCity(): ?string {
+ return $this->city;