true])] private bool $isActive = true; #[ORM\Column(enumType: BudgetTypeEnum::class)] private BudgetTypeEnum $type; #[ORM\Column(type: Types::JSON, length: 255, options: ['default' => '{}', 'jsonb' => true])] private array $name = []; public function getId(): ?int { return $this->id; } public function getIsActive(): bool { return $this->isActive; } public function getType(): BudgetTypeEnum { return $this->type; } public function getName(): ?array { return $this->name; } public function setIsActive(bool $isActive): self { $this->isActive = $isActive; return $this; } public function setType(BudgetTypeEnum $type): self { $this->type = $type; return $this; } public function setName(array $name): self { $this->name = $name; return $this; } }