src/Entity/Roles.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RolesRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=RolesRepository::class)
  7.  */
  8. class Roles
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=true)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $code;
  24.     /**
  25.      * @ORM\Column(type="boolean")
  26.      */
  27.     private $status true;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.  
  33.     public function getName(): ?string
  34.     {
  35.         return $this->name;
  36.     }
  37.     public function setName(string $name): self
  38.     {
  39.         $this->name $name;
  40.         return $this;
  41.     }
  42.     public function getCode(): ?string
  43.     {
  44.         return $this->code;
  45.     }
  46.     public function setCode(?string $code): self
  47.     {
  48.         $this->code $code;
  49.         return $this;
  50.     }
  51.     public function isStatus(): ?bool
  52.     {
  53.         return $this->status;
  54.     }
  55.     public function setStatus(bool $status): self
  56.     {
  57.         $this->status $status;
  58.         return $this;
  59.     }
  60.     function __toString()
  61.     {
  62.         return $this->getName();
  63.     }
  64. }