X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/71c0edfd65c95bd05705d7c037766f477aac2791..dedb94306e39d1d64f8b970a366a16cfb68c16dc:/Entity/User.php diff --git a/Entity/User.php b/Entity/User.php index 8e6a671..c4c14df 100644 --- a/Entity/User.php +++ b/Entity/User.php @@ -12,6 +12,7 @@ namespace Rapsys\UserBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; +use Doctrine\ORM\Event\PreUpdateEventArgs; use Symfony\Component\Security\Core\User\UserInterface; use Rapsys\UserBundle\Entity\Civility; @@ -51,6 +52,11 @@ class User implements UserInterface, \Serializable { */ protected $password; + /** + * @var string + */ + protected $slug; + /** * @var bool */ @@ -83,8 +89,11 @@ class User implements UserInterface, \Serializable { /** * Constructor + * + * @param string $mail The user mail */ - public function __construct() { + public function __construct(string $mail) { + $this->mail = $mail; $this->active = false; $this->disabled = false; $this->groups = new ArrayCollection(); @@ -106,7 +115,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setMail(string $mail) { + public function setMail(string $mail): User { $this->mail = $mail; return $this; @@ -128,7 +137,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setPseudonym(string $pseudonym) { + public function setPseudonym(string $pseudonym): User { $this->pseudonym = $pseudonym; return $this; @@ -150,7 +159,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setForename(string $forename) { + public function setForename(string $forename): User { $this->forename = $forename; return $this; @@ -172,7 +181,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setSurname(string $surname) { + public function setSurname(string $surname): User { $this->surname = $surname; return $this; @@ -194,7 +203,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setPassword(string $password) { + public function setPassword(string $password): User { $this->password = $password; return $this; @@ -211,6 +220,28 @@ class User implements UserInterface, \Serializable { return $this->password; } + /** + * Set slug + * + * @param string $slug + * + * @return User + */ + public function setSlug(?string $slug): User { + $this->slug = $slug; + + return $this; + } + + /** + * Get slug + * + * @return string + */ + public function getSlug(): ?string { + return $this->slug; + } + /** * Set active * @@ -218,7 +249,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setActive(bool $active) { + public function setActive(bool $active): User { $this->active = $active; return $this; @@ -240,7 +271,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setDisabled(bool $disabled) { + public function setDisabled(bool $disabled): User { $this->disabled = $disabled; return $this; @@ -262,7 +293,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setCreated(\DateTime $created) { + public function setCreated(\DateTime $created): User { $this->created = $created; return $this; @@ -284,7 +315,7 @@ class User implements UserInterface, \Serializable { * * @return User */ - public function setUpdated(\DateTime $updated) { + public function setUpdated(\DateTime $updated): User { $this->updated = $updated; return $this; @@ -302,7 +333,7 @@ class User implements UserInterface, \Serializable { /** * Set civility */ - public function setCivility(Civility $civility) { + public function setCivility(Civility $civility): User { $this->civility = $civility; return $this; @@ -462,7 +493,7 @@ class User implements UserInterface, \Serializable { /** * {@inheritdoc} */ - public function preUpdate(\Doctrine\ORM\Event\PreUpdateEventArgs $eventArgs) { + public function preUpdate(PreUpdateEventArgs $eventArgs) { //Check that we have an user instance if (($user = $eventArgs->getEntity()) instanceof User) { //Set updated value