src/Entity/Pays.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PaysRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=PaysRepository::class)
  7.  */
  8. class Pays
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer", nullable=true)
  18.      */
  19.     private $phone;
  20.     /**
  21.      * @ORM\Column(type="string", length=2, nullable=true)
  22.      */
  23.     private $code;
  24.     /**
  25.      * @ORM\Column(type="string", length=80, nullable=true)
  26.      */
  27.     private $name;
  28.     /**
  29.      * @ORM\Column(type="string", length=10, nullable=true)
  30.      */
  31.     private $symbol;
  32.     /**
  33.      * @ORM\Column(type="string", length=80, nullable=true)
  34.      */
  35.     private $capital;
  36.     /**
  37.      * @ORM\Column(type="string", length=3, nullable=true)
  38.      */
  39.     private $currency;
  40.     /**
  41.      * @ORM\Column(type="string", length=30, nullable=true)
  42.      */
  43.     private $continent;
  44.     /**
  45.      * @ORM\Column(type="string", length=2, nullable=true)
  46.      */
  47.     private $continentCode;
  48.     /**
  49.      * @ORM\Column(type="string", length=3, nullable=true)
  50.      */
  51.     private $alpha3;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getPhone(): ?int
  57.     {
  58.         return $this->phone;
  59.     }
  60.     public function setPhone(?int $phone): self
  61.     {
  62.         $this->phone $phone;
  63.         return $this;
  64.     }
  65.     public function getCode(): ?string
  66.     {
  67.         return $this->code;
  68.     }
  69.     public function setCode(?string $code): self
  70.     {
  71.         $this->code $code;
  72.         return $this;
  73.     }
  74.     public function getName(): ?string
  75.     {
  76.         return $this->name;
  77.     }
  78.     public function setName(string $name): self
  79.     {
  80.         $this->name $name;
  81.         return $this;
  82.     }
  83.     public function getSymbol(): ?string
  84.     {
  85.         return $this->symbol;
  86.     }
  87.     public function setSymbol(string $symbol): self
  88.     {
  89.         $this->symbol $symbol;
  90.         return $this;
  91.     }
  92.     public function getCapital(): ?string
  93.     {
  94.         return $this->capital;
  95.     }
  96.     public function setCapital(?string $capital): self
  97.     {
  98.         $this->capital $capital;
  99.         return $this;
  100.     }
  101.     public function getCurrency(): ?string
  102.     {
  103.         return $this->currency;
  104.     }
  105.     public function setCurrency(?string $currency): self
  106.     {
  107.         $this->currency $currency;
  108.         return $this;
  109.     }
  110.     public function getContinent(): ?string
  111.     {
  112.         return $this->continent;
  113.     }
  114.     public function setContinent(?string $continent): self
  115.     {
  116.         $this->continent $continent;
  117.         return $this;
  118.     }
  119.     public function getContinentCode(): ?string
  120.     {
  121.         return $this->continentCode;
  122.     }
  123.     public function setContinentCode(?string $continentCode): self
  124.     {
  125.         $this->continentCode $continentCode;
  126.         return $this;
  127.     }
  128.     public function getAlpha3(): ?string
  129.     {
  130.         return $this->alpha3;
  131.     }
  132.     public function setAlpha3(?string $alpha3): self
  133.     {
  134.         $this->alpha3 $alpha3;
  135.         return $this;
  136.     }
  137. }