src/Security/User.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Security;
  3. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  4. use Symfony\Component\Security\Core\User\UserInterface;
  5. use Sulu\Bundle\SecurityBundle\Entity\User as SuluUser;
  6. /**
  7.  * The following annotations are required for replacing the table of the extended entity:
  8.  *
  9.  * @ORM\Table(name="se_users")
  10.  * @ORM\Entity
  11.  */
  12. class User extends SuluUser implements UserInterfacePasswordAuthenticatedUserInterface
  13. {
  14.     /**
  15.      * @var string
  16.      *
  17.      * @ORM\Column(name="enterprise", type="string", length=255, nullable = true)
  18.      */
  19.     protected $enterprise;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="actorType", type="string", length=255, nullable = true)
  24.      */
  25.     protected $actorType;
  26.     /**
  27.      * @var bool
  28.      *
  29.      * @ORM\Column(name="isVisibleProfile", type="boolean")
  30.      */
  31.     protected $isVisibleProfile false;
  32.     /**
  33.      * Get enterprise.
  34.      *
  35.      * @return string
  36.      */
  37.     public function getEnterprise()
  38.     {
  39.         return $this->enterprise;
  40.     }
  41.     /**
  42.      * Set enterprise.
  43.      *
  44.      * @param string $enterprise
  45.      *
  46.      * @return self
  47.      */
  48.     public function setEnterprise($enterprise)
  49.     {
  50.         $this->enterprise $enterprise;
  51.         return $this;
  52.     }
  53.     /**
  54.      * Get actorType.
  55.      *
  56.      * @return string
  57.      */
  58.     public function getActorType()
  59.     {
  60.         return $this->actorType;
  61.     }
  62.     /**
  63.      * Set actorType.
  64.      *
  65.      * @param string $actorType
  66.      *
  67.      * @return self
  68.      */
  69.     public function setActorType($actorType)
  70.     {
  71.         $this->actorType $actorType;
  72.         return $this;
  73.     }
  74.     /**
  75.      * Get isVisibleProfile.
  76.      *
  77.      * @return bool
  78.      */
  79.     public function getIsVisibleProfile()
  80.     {
  81.         return $this->isVisibleProfile;
  82.     }
  83.     /**
  84.      * Set isVisibleProfile.
  85.      *
  86.      * @param string $isVisibleProfile
  87.      *
  88.      * @return self
  89.      */
  90.     public function setIsVisibleProfile($isVisibleProfile)
  91.     {
  92.         $this->isVisibleProfile $isVisibleProfile;
  93.         return $this;
  94.     }
  95.     public function getPassword(): string
  96.     {
  97.         return $this->password;
  98.     }
  99. }