entries = new ArrayCollection(); $this->roles = ['ROLE_USER']; } /** * Set name. * * @param string $name * * @return User */ public function setName($name) { $this->name = $name; return $this; } /** * Get name. * * @return string */ public function getName() { return $this->name; } /** * @return \DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * @return \DateTime */ public function getUpdatedAt() { return $this->updatedAt; } /** * @param Entry $entry * * @return User */ public function addEntry(Entry $entry) { $this->entries[] = $entry; return $this; } /** * @return ArrayCollection */ public function getEntries() { return $this->entries; } public function isEqualTo(UserInterface $user) { return $this->username === $user->getUsername(); } /** * Set config. * * @param Config $config * * @return User */ public function setConfig(Config $config = null) { $this->config = $config; return $this; } /** * Get config. * * @return Config */ public function getConfig() { return $this->config; } /** * @return bool */ public function isTwoFactorAuthentication() { return $this->twoFactorAuthentication; } /** * @param bool $twoFactorAuthentication */ public function setTwoFactorAuthentication($twoFactorAuthentication) { $this->twoFactorAuthentication = $twoFactorAuthentication; } public function isEmailAuthEnabled() { return $this->twoFactorAuthentication; } public function getEmailAuthCode() { return $this->authCode; } public function setEmailAuthCode($authCode) { $this->authCode = $authCode; } public function addTrustedComputer($token, \DateTime $validUntil) { $this->trusted[$token] = $validUntil->format('r'); } public function isTrustedComputer($token) { if (isset($this->trusted[$token])) { $now = new \DateTime(); $validUntil = new \DateTime($this->trusted[$token]); return $now < $validUntil; } return false; } /** * @param Client $client * * @return User */ public function addClient(Client $client) { $this->clients[] = $client; return $this; } /** * @return ArrayCollection */ public function getClients() { return $this->clients; } /** * Only used by the API when creating a new user it'll also return the first client (which was also created at the same time). * * @return Client */ public function getFirstClient() { if (!empty($this->clients)) { return $this->clients->first(); } } }