<?phpnamespace App\Entity;use App\Repository\CityRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=CityRepository::class) */class City{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $name; /** * @ORM\Column(type="string", length=255) */ private $state; /** * @ORM\Column(type="string", length=255) */ private $country; /** * @ORM\Column(type="integer") */ private $access; /** * @ORM\Column(type="datetime") */ private $accessed; /** * @ORM\Column(type="datetime") */ private $created; /** * @ORM\Column(type="datetime") */ private $updated; /** * @ORM\Column(type="boolean") */ private $status; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getState(): ?string { return $this->state; } public function setState(string $state): self { $this->state = $state; return $this; } public function getCountry(): ?string { return $this->country; } public function setCountry(string $country): self { $this->country = $country; return $this; } public function getAccess(): ?int { return $this->access; } public function setAccess(int $access): self { $this->access = $access; return $this; } public function getAccessed(): ?\DateTimeInterface { return $this->accessed; } public function setAccessed(\DateTimeInterface $accessed): self { $this->accessed = $accessed; return $this; } public function getCreated(): ?\DateTimeInterface { return $this->created; } public function setCreated(\DateTimeInterface $created): self { $this->created = $created; return $this; } public function getUpdated(): ?\DateTimeInterface { return $this->updated; } public function setUpdated(\DateTimeInterface $updated): self { $this->updated = $updated; return $this; } public function isStatus(): ?bool { return $this->status; } public function setStatus(bool $status): self { $this->status = $status; return $this; }}