-<?php
+<?php declare(strict_types=1);
+
+/*
+ * this file is part of the rapsys packbundle package.
+ *
+ * (c) raphaël gertz <symfony@rapsys.eu>
+ *
+ * for the full copyright and license information, please view the license
+ * file that was distributed with this source code.
+ */
-// src/Rapsys/AirBundle/Entity/User.php
namespace Rapsys\AirBundle\Entity;
-use Rapsys\AirBundle\Entity\Application;
-use Rapsys\AirBundle\Entity\Group;
-use Rapsys\AirBundle\Entity\Vote;
+use Doctrine\Common\Collections\ArrayCollection;
+
use Rapsys\UserBundle\Entity\User as BaseUser;
class User extends BaseUser {
+ /**
+ * @var string
+ */
+ protected $city;
+
/**
* @var string
*/
protected $phone;
+ /**
+ * @var Country
+ */
+ protected $country;
+
/**
* @var string
*/
- protected $donation;
+ protected $pseudonym;
/**
* @var string
*/
- protected $site;
+ protected $zipcode;
/**
- * @var \Doctrine\Common\Collections\Collection
+ * @var ArrayCollection
*/
private $applications;
/**
- * @var \Doctrine\Common\Collections\Collection
+ * @var ArrayCollection
*/
- private $subscribers;
+ private $dances;
/**
- * @var \Doctrine\Common\Collections\Collection
+ * @var ArrayCollection
*/
- private $subscriptions;
+ private $locations;
/**
- * @var \Doctrine\Common\Collections\Collection
+ * @var ArrayCollection
*/
private $snippets;
+ /**
+ * @var ArrayCollection
+ */
+ private $subscribers;
+
+ /**
+ * @var ArrayCollection
+ */
+ private $subscriptions;
+
/**
* Constructor
+ *
+ * @param string $mail The user mail
*/
- public function __construct() {
+ public function __construct(string $mail) {
//Call parent constructor
- parent::__construct();
+ parent::__construct($mail);
+
+ //Set defaults
+ $this->city = null;
+ $this->country = null;
+ $this->phone = null;
+ $this->pseudonym = null;
+ $this->zipcode = null;
//Set collections
- $this->applications = 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();
+ $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;
}
/**
*
* @return User
*/
- public function setPhone($phone) {
+ public function setPhone(?string $phone): User {
$this->phone = $phone;
return $this;
*
* @return string
*/
- public function getPhone() {
+ public function getPhone(): ?string {
return $this->phone;
}
/**
- * Set donation
+ * Set pseudonym
*
- * @param string $donation
+ * @param string $pseudonym
*
* @return User
*/
- public function setDonation($donation) {
- $this->donation = $donation;
+ public function setPseudonym(?string $pseudonym): User {
+ $this->pseudonym = $pseudonym;
return $this;
}
/**
- * Get donation
+ * Get pseudonym
*
* @return string
*/
- public function getDonation() {
- return $this->donation;
+ public function getPseudonym(): ?string {
+ return $this->pseudonym;
}
/**
- * Set site
+ * Set zipcode
*
- * @param string $site
+ * @param string $zipcode
*
* @return User
*/
- public function setSite($site) {
- $this->site = $site;
+ public function setZipcode(?string $zipcode): User {
+ $this->zipcode = $zipcode;
return $this;
}
/**
- * Get site
+ * Get zipcode
*
* @return string
*/
- public function getSite() {
- return $this->site;
+ public function getZipcode(): ?string {
+ return $this->zipcode;
}
/**
* Add application
*
- * @param \Rapsys\AirBundle\Entity\Application $application
+ * @param Application $application
*
* @return User
*/
- public function addApplication(Application $application) {
+ public function addApplication(Application $application): User {
$this->applications[] = $application;
return $this;
/**
* Remove application
*
- * @param \Rapsys\AirBundle\Entity\Application $application
+ * @param Application $application
*/
- public function removeApplication(Application $application) {
- $this->applications->removeElement($application);
+ public function removeApplication(Application $application): bool {
+ return $this->applications->removeElement($application);
}
/**
* Get applications
*
- * @return \Doctrine\Common\Collections\Collection
+ * @return ArrayCollection
*/
- public function getApplications() {
+ public function getApplications(): ArrayCollection {
return $this->applications;
}
/**
- * Add subscriber
+ * Add dance
*
- * @param \Rapsys\AirBundle\Entity\User $subscriber
+ * @param Dance $dance
*
* @return User
*/
- public function addSubscriber(User $subscriber) {
- $this->subscribers[] = $subscriber;
+ public function addDance(Dance $dance): User {
+ $this->dances[] = $dance;
return $this;
}
/**
- * Remove subscriber
+ * Remove dance
+ *
+ * @param Dance $dance
*
- * @param \Rapsys\AirBundle\Entity\User $subscriber
+ * @return bool
*/
- public function removeSubscriber(User $subscriber) {
- $this->subscribers->removeElement($subscriber);
+ public function removeDance(Dance $dance): bool {
+ return $this->dances->removeElement($dance);
}
/**
- * Get subscribers
+ * Get dances
*
- * @return \Doctrine\Common\Collections\Collection
+ * @return ArrayCollection
*/
- public function getSubscribers() {
- return $this->subscribers;
+ public function getDances(): ArrayCollection {
+ return $this->dances;
}
/**
- * Add subscription
+ * Add location
*
- * @param \Rapsys\AirBundle\Entity\User $subscription
+ * @param Location $location
*
* @return User
*/
- public function addSubscription(User $subscription) {
- $this->subscriptions[] = $subscription;
+ public function addLocation(Location $location): User {
+ $this->locations[] = $location;
return $this;
}
/**
- * Remove subscription
+ * Remove location
*
- * @param \Rapsys\AirBundle\Entity\User $subscription
+ * @param Location $location
*/
- public function removeSubscription(User $subscription) {
- $this->subscriptions->removeElement($subscription);
+ public function removeLocation(Location $location): bool {
+ return $this->locations->removeElement($location);
}
/**
- * Get subscriptions
+ * Get locations
*
- * @return \Doctrine\Common\Collections\Collection
+ * @return ArrayCollection
*/
- public function getSubscriptions() {
- return $this->subscriptions;
+ public function getLocations(): ArrayCollection {
+ return $this->locations;
}
/**
* Add snippet
*
- * @param \Rapsys\AirBundle\Entity\Snippet $snippet
+ * @param Snippet $snippet
*
- * @return Location
+ * @return User
*/
- public function addSnippet(\Rapsys\AirBundle\Entity\Snippet $snippet) {
+ public function addSnippet(Snippet $snippet): User {
$this->snippets[] = $snippet;
return $this;
/**
* Remove snippet
*
- * @param \Rapsys\AirBundle\Entity\Snippet $snippet
+ * @param Snippet $snippet
*/
- public function removeSnippet(\Rapsys\AirBundle\Entity\Snippet $snippet) {
- $this->snippets->removeElement($snippet);
+ public function removeSnippet(Snippet $snippet): bool {
+ return $this->snippets->removeElement($snippet);
}
/**
* Get snippets
*
- * @return \Doctrine\Common\Collections\Collection
+ * @return ArrayCollection
*/
- public function getSnippets() {
+ public function getSnippets(): ArrayCollection {
return $this->snippets;
}
+
+ /**
+ * Add subscriber
+ *
+ * @param User $subscriber
+ *
+ * @return User
+ */
+ public function addSubscriber(User $subscriber): User {
+ $this->subscribers[] = $subscriber;
+
+ return $this;
+ }
+
+ /**
+ * Remove subscriber
+ *
+ * @param User $subscriber
+ */
+ public function removeSubscriber(User $subscriber): bool {
+ return $this->subscribers->removeElement($subscriber);
+ }
+
+ /**
+ * Get subscribers
+ *
+ * @return ArrayCollection
+ */
+ public function getSubscribers(): ArrayCollection {
+ return $this->subscribers;
+ }
+
+ /**
+ * Add subscription
+ *
+ * @param User $subscription
+ *
+ * @return User
+ */
+ public function addSubscription(User $subscription): User {
+ $this->subscriptions[] = $subscription;
+
+ return $this;
+ }
+
+ /**
+ * Remove subscription
+ *
+ * @param User $subscription
+ */
+ public function removeSubscription(User $subscription): bool {
+ return $this->subscriptions->removeElement($subscription);
+ }
+
+ /**
+ * Get subscriptions
+ *
+ * @return ArrayCollection
+ */
+ public function getSubscriptions(): ArrayCollection {
+ return $this->subscriptions;
+ }
}