['task_status:read']], denormalizationContext: ['groups' => ['task_status:write']], order: ['position' => 'ASC'], )] #[ORM\Entity(repositoryClass: TaskStatusRepository::class)] class TaskStatus { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] #[Groups(['task_status:read', 'task:read', 'workflow:read', 'project:read'])] private ?int $id = null; #[ORM\Column(length: 255)] #[Groups(['task_status:read', 'task_status:write', 'task:read', 'workflow:read', 'project:read'])] private ?string $label = null; #[ORM\Column(length: 7)] #[Groups(['task_status:read', 'task_status:write', 'task:read', 'workflow:read', 'project:read'])] private ?string $color = '#222783'; #[ORM\Column] #[Groups(['task_status:read', 'task_status:write', 'task:read', 'workflow:read', 'project:read'])] private ?int $position = 0; #[ORM\Column(type: 'boolean')] #[Groups(['task_status:read', 'task_status:write', 'task:read', 'workflow:read', 'project:read'])] private bool $isFinal = false; #[ORM\ManyToOne(targetEntity: Workflow::class, inversedBy: 'statuses')] #[ORM\JoinColumn(nullable: false, onDelete: 'CASCADE')] #[Groups(['task_status:read', 'task_status:write', 'task:read'])] #[Assert\NotNull] private ?Workflow $workflow = null; #[ORM\Column(type: 'string', length: 32, enumType: StatusCategory::class)] #[Groups(['task_status:read', 'task_status:write', 'task:read', 'workflow:read', 'project:read'])] #[Assert\NotNull] private ?StatusCategory $category = null; public function getId(): ?int { return $this->id; } public function getLabel(): ?string { return $this->label; } public function setLabel(string $label): static { $this->label = $label; return $this; } public function getColor(): ?string { return $this->color; } public function setColor(string $color): static { $this->color = $color; return $this; } public function getPosition(): ?int { return $this->position; } public function setPosition(int $position): static { $this->position = $position; return $this; } public function getIsFinal(): bool { return $this->isFinal; } public function setIsFinal(bool $isFinal): static { $this->isFinal = $isFinal; return $this; } public function getWorkflow(): ?Workflow { return $this->workflow; } public function setWorkflow(?Workflow $workflow): static { $this->workflow = $workflow; return $this; } public function getCategory(): ?StatusCategory { return $this->category; } public function setCategory(StatusCategory $category): static { $this->category = $category; return $this; } }