<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass="App\Repository\CreditPackGenericRepository") */class CreditPackGeneric extends CreditPack{ /** * @ORM\Column(type="boolean") */ private $active; public function getActive(): ?bool { return $this->active; } public function setActive(bool $active): self { $this->active = $active; return $this; }}