src/Entity/Country.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Country
  6.  *
  7.  * @ORM\Table(name="countries")
  8.  * @ORM\Entity(repositoryClass="App\Repository\CountryRepository")
  9.  */
  10. class Country
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="code", type="string", length=10)
  24.      */
  25.     private $code;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="name", type="string", length=255)
  30.      */
  31.     private $country;
  32.     /**
  33.      * Get id
  34.      *
  35.      * @return int
  36.      */
  37.     public function getId()
  38.     {
  39.         return $this->id;
  40.     }
  41.     /**
  42.      * Set iso
  43.      *
  44.      * @param string $iso
  45.      *
  46.      * @return Country
  47.      */
  48.     public function setCode($code)
  49.     {
  50.         $this->code $code;
  51.         return $this;
  52.     }
  53.     /**
  54.      * Get iso
  55.      *
  56.      * @return string
  57.      */
  58.     public function getCode()
  59.     {
  60.         return $this->code;
  61.     }
  62.     /**
  63.      * Set country
  64.      *
  65.      * @param string $country
  66.      *
  67.      * @return Country
  68.      */
  69.     public function setCountry($country)
  70.     {
  71.         $this->country $country;
  72.         return $this;
  73.     }
  74.     /**
  75.      * Get country
  76.      *
  77.      * @return string
  78.      */
  79.     public function getCountry()
  80.     {
  81.         return $this->country;
  82.     }
  83. }