id; } /** * @ORM\Column(name="def", type="boolean") */ protected $default; /** * @ORM\Column(name="date_enable", type="boolean", nullable=true) */ protected $dateEnable; /** * @ORM\ManyToOne(targetEntity="Maestro\Component\Workflow\Entity\Configuration", inversedBy="places") */ protected $configuration; public function getDefault(): ?bool { return $this->default; } public function setDefault(bool $default): self { $this->default = $default; return $this; } public function getConfiguration(): ?Configuration { return $this->configuration; } public function setConfiguration(?Configuration $configuration): self { $this->configuration = $configuration; return $this; } public function getDateEnable(): ?bool { return $this->dateEnable; } public function setDateEnable(?bool $dateEnable): self { $this->dateEnable = $dateEnable; return $this; } }