X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FUserBundle%2FEntity%2FUser.php;h=a3320bbcaeb14f2471f14e797f578be8917fc482;hb=9114615adcee0255273c7e91d6d8e55f57fc3d6f;hp=aba76ca74a262e3ddcc83b90d26519a0af151d2d;hpb=679aaf08366c265b29d0e4b2e59919314cf338f9;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/UserBundle/Entity/User.php b/src/Wallabag/UserBundle/Entity/User.php index aba76ca7..a3320bbc 100644 --- a/src/Wallabag/UserBundle/Entity/User.php +++ b/src/Wallabag/UserBundle/Entity/User.php @@ -4,12 +4,12 @@ namespace Wallabag\UserBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; +use FOS\UserBundle\Model\User as BaseUser; +use JMS\Serializer\Annotation\Accessor; use JMS\Serializer\Annotation\Groups; use JMS\Serializer\Annotation\XmlRoot; -use JMS\Serializer\Annotation\Accessor; use Scheb\TwoFactorBundle\Model\Email\TwoFactorInterface; use Scheb\TwoFactorBundle\Model\TrustedComputerInterface; -use FOS\UserBundle\Model\User as BaseUser; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; use Symfony\Component\Security\Core\User\UserInterface; use Wallabag\ApiBundle\Entity\Client; @@ -93,21 +93,11 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf protected $config; /** - * @ORM\Column(type="integer", nullable=true) - */ - private $authCode; - - /** - * @var bool + * @var ArrayCollection * - * @ORM\Column(type="boolean") + * @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\SiteCredential", mappedBy="user", cascade={"remove"}) */ - private $twoFactorAuthentication = false; - - /** - * @ORM\Column(type="json_array", nullable=true) - */ - private $trusted; + protected $site_credentials; /** * @var ArrayCollection @@ -124,6 +114,23 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf */ protected $default_client; + /** + * @ORM\Column(type="integer", nullable=true) + */ + private $authCode; + + /** + * @var bool + * + * @ORM\Column(type="boolean") + */ + private $twoFactorAuthentication = false; + + /** + * @ORM\Column(type="json_array", nullable=true) + */ + private $trusted; + public function __construct() { parent::__construct(); @@ -137,7 +144,7 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf */ public function timestamps() { - if (is_null($this->createdAt)) { + if (null === $this->createdAt) { $this->createdAt = new \DateTime(); }