/**
     * @var boolean
     *
     * @ORM\Column(type="boolean")
     */
    private $active = 0;

    public function setActive(?bool $active): self
    {
         $this->active = $active ;
         return $this;
    }


    public function getActive(): ?bool
    {
        return $this->active;
    }

By toihid

Leave a Reply