src/Entity/RolesAuthorizedActions.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RolesAuthorizedActionsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=RolesAuthorizedActionsRepository::class)
  7.  */
  8. class RolesAuthorizedActions
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Roles::class, inversedBy="rolesAuthorizedActions")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $role;
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity=AuthorizedActions::class, inversedBy="rolesAuthorizedActions")
  23.      * @ORM\JoinColumn(nullable=false)
  24.      */
  25.     private $authorizedAction;
  26.     /**
  27.      * @ORM\Column(type="boolean")
  28.      */
  29.     private $deleted false;
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getRole(): ?Roles
  35.     {
  36.         return $this->role;
  37.     }
  38.     public function setRole(?Roles $role): self
  39.     {
  40.         $this->role $role;
  41.         return $this;
  42.     }
  43.     public function getAuthorizedAction(): ?AuthorizedActions
  44.     {
  45.         return $this->authorizedAction;
  46.     }
  47.     public function setAuthorizedAction(?AuthorizedActions $authorizedAction): self
  48.     {
  49.         $this->authorizedAction $authorizedAction;
  50.         return $this;
  51.     }
  52.     public function isDeleted(): ?bool
  53.     {
  54.         return $this->deleted;
  55.     }
  56.     public function setDeleted(bool $deleted): self
  57.     {
  58.         $this->deleted $deleted;
  59.         return $this;
  60.     }
  61. }