<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; use Ramsey\Uuid\Doctrine\UuidGenerator; use Symfony\Component\Validator\Constraints as Assert; /** * @ORM\Entity * @ORM\Table(name="subterritory") */ class Subterritory { /** * @var \Ramsey\Uuid\UuidInterface * * @ORM\Id * @ORM\Column(type="uuid", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class=UuidGenerator::class) */ protected $id; /** * @var string|null * * @ORM\Column(type="string", unique=true) * @Assert\NotBlank */ protected $name; public function getId() { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(?string $name) { $this->name = $name; return $this; } public function __toString(): string { return $this->getName(); } }