*/ #[ORM\ManyToMany(targetEntity: Constructeur::class, inversedBy: 'composants')] #[ORM\JoinTable( name: '_ComposantConstructeurs', joinColumns: [new ORM\JoinColumn(name: 'A', referencedColumnName: 'id', onDelete: 'CASCADE')], inverseJoinColumns: [new ORM\InverseJoinColumn(name: 'B', referencedColumnName: 'id', onDelete: 'CASCADE')] )] private Collection $constructeurs; /** * @var Collection */ #[ORM\OneToMany(mappedBy: 'composant', targetEntity: Document::class)] private Collection $documents; /** * @var Collection */ #[ORM\OneToMany(mappedBy: 'composant', targetEntity: CustomFieldValue::class)] private Collection $customFieldValues; /** * @var Collection */ #[ORM\OneToMany(mappedBy: 'composant', targetEntity: MachineComponentLink::class)] private Collection $machineLinks; #[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'createdAt')] private \DateTimeImmutable $createdAt; #[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'updatedAt')] private \DateTimeImmutable $updatedAt; public function __construct() { $this->constructeurs = new ArrayCollection(); $this->documents = new ArrayCollection(); $this->customFieldValues = new ArrayCollection(); $this->machineLinks = new ArrayCollection(); } #[ORM\PrePersist] public function setCreatedAtValue(): void { $now = new \DateTimeImmutable(); $this->createdAt = $now; $this->updatedAt = $now; if ($this->id === null) { $this->id = $this->generateCuid(); } } #[ORM\PreUpdate] public function setUpdatedAtValue(): void { $this->updatedAt = new \DateTimeImmutable(); } private function generateCuid(): string { return 'cl' . bin2hex(random_bytes(12)); } public function getId(): ?string { return $this->id; } public function setId(string $id): static { $this->id = $id; return $this; } public function getName(): string { return $this->name; } public function setName(string $name): static { $this->name = $name; return $this; } public function getReference(): ?string { return $this->reference; } public function setReference(?string $reference): static { $this->reference = $reference; return $this; } public function getPrix(): ?string { return $this->prix; } public function setPrix(?string $prix): static { $this->prix = $prix; return $this; } public function getStructure(): ?array { return $this->structure; } public function setStructure(?array $structure): static { $this->structure = $structure; return $this; } public function getTypeComposant(): ?ModelType { return $this->typeComposant; } public function setTypeComposant(?ModelType $typeComposant): static { $this->typeComposant = $typeComposant; return $this; } public function getProduct(): ?Product { return $this->product; } public function setProduct(?Product $product): static { $this->product = $product; return $this; } /** * @return Collection */ public function getConstructeurs(): Collection { return $this->constructeurs; } /** * @return Collection */ public function getDocuments(): Collection { return $this->documents; } /** * @return Collection */ public function getCustomFieldValues(): Collection { return $this->customFieldValues; } public function getCreatedAt(): \DateTimeImmutable { return $this->createdAt; } public function getUpdatedAt(): \DateTimeImmutable { return $this->updatedAt; } }