src/Entity/Application.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Repository\ApplicationRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ApiResource]
  7. #[ORM\Entity(repositoryClassApplicationRepository::class)]
  8. class Application
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(type'integer')]
  17.     private ?int $menuOrder null;
  18.     #[ORM\Column(type'boolean'nullabletrue)]
  19.     private ?bool $isEnabled null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getName(): ?string
  25.     {
  26.         return $this->name;
  27.     }
  28.     public function setName(string $name): self
  29.     {
  30.         $this->name $name;
  31.         return $this;
  32.     }
  33.     public function getMenuOrder(): ?int
  34.     {
  35.         return $this->menuOrder;
  36.     }
  37.     public function setMenuOrder(int $menuOrder): self
  38.     {
  39.         $this->menuOrder $menuOrder;
  40.         return $this;
  41.     }
  42.     public function getIsEnabled(): ?bool
  43.     {
  44.         return $this->isEnabled;
  45.     }
  46.     public function setIsEnabled(?bool $isEnabled): self
  47.     {
  48.         $this->isEnabled $isEnabled;
  49.         return $this;
  50.     }
  51. }