<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity]class Partial extends OrderProduct{ #[ORM\Column(length: 255)] private ?string $name = null; // ClientOrder relationship is now handled by parent OrderProduct class public function getName(): ?string { return $this->name; } public function setName(string $name): static { $this->name = $name; return $this; }}