+ /**
+ * Add dance
+ *
+ * @param Dance $dance
+ *
+ * @return User
+ */
+ public function addDance(Dance $dance): User {
+ $this->dances[] = $dance;
+
+ return $this;
+ }
+
+ /**
+ * Remove dance
+ *
+ * @param Dance $dance
+ *
+ * @return bool
+ */
+ public function removeDance(Dance $dance): bool {
+ return $this->dances->removeElement($dance);
+ }
+
+ /**
+ * Get dances
+ *
+ * @return \Doctrine\Common\Collections\Collection
+ */
+ public function getDances(): Collection {
+ return $this->dances;
+ }
+
+ /**
+ * Add location
+ *
+ * @param Location $location
+ *
+ * @return User
+ */
+ public function addLocation(Location $location): User {
+ $this->locations[] = $location;
+
+ return $this;
+ }
+
+ /**
+ * Remove location
+ *
+ * @param Location $location
+ */
+ public function removeLocation(Location $location): bool {
+ return $this->locations->removeElement($location);
+ }
+
+ /**
+ * Get locations
+ *
+ * @return \Doctrine\Common\Collections\Collection
+ */
+ public function getLocations(): Collection {
+ return $this->locations;
+ }
+
+ /**
+ * Add snippet
+ *
+ * @param Snippet $snippet
+ *
+ * @return User
+ */
+ public function addSnippet(Snippet $snippet): User {
+ $this->snippets[] = $snippet;
+
+ return $this;
+ }
+
+ /**
+ * Remove snippet
+ *
+ * @param Snippet $snippet
+ */
+ public function removeSnippet(Snippet $snippet): bool {
+ return $this->snippets->removeElement($snippet);
+ }
+
+ /**
+ * Get snippets
+ *
+ * @return \Doctrine\Common\Collections\Collection
+ */
+ public function getSnippets(): Collection {
+ return $this->snippets;
+ }
+