<?php
namespace App\Entity\Garages;
use App\Entity\AbstractBase;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="vulco_config_garage_search")
* @ORM\Entity(repositoryClass=GarageSearchConfigRepository::class)
*/
class GarageSearchConfig extends AbstractBase
{
/**
* @ORM\Column(type="boolean", options={"default": 0})
*/
private bool $disableWorksWithCollective = false;
public function __construct(bool $disableWorksWithCollective = false)
{
$this->disableWorksWithCollective = $disableWorksWithCollective;
}
public function getDisableWorksWithCollective(): bool
{
return $this->disableWorksWithCollective;
}
public function setDisableWorksWithCollective(bool $disableWorksWithCollective): self
{
$this->disableWorksWithCollective = $disableWorksWithCollective;
return $this;
}
}