<?php
namespace App\Entity;
use App\Repository\StateRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: StateRepository::class), ORM\Table(name: 'states')]
class State implements \Stringable
{
#[ORM\Id, ORM\GeneratedValue, ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 255)]
private $name;
#[ORM\Column(type: 'string', length: 100, unique: true)]
private $code;
#[ORM\ManyToOne(targetEntity: Country::class), ORM\JoinColumn(nullable: false)]
private $country;
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 getCountry(): ?Country
{
return $this->country;
}
public function setCountry(Country $country): self
{
$this->country = $country;
return $this;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(string $code): self
{
$this->code = $code;
return $this;
}
public function __toString(): string
{
return $this->getName();
}
}