src/Entity/AddressDistrict.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class AddressDistrict {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $name;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $bkz;
  17.     /**
  18.      * @var \App\Entity\AddressState
  19.      */
  20.     private $addressState;
  21.     /**
  22.      * Get id
  23.      *
  24.      * @return integer
  25.      */
  26.     public function getId() {
  27.         return $this->id;
  28.     }
  29.     /**
  30.      * Set name
  31.      *
  32.      * @param string $name
  33.      *
  34.      * @return AddressDistrict
  35.      */
  36.     public function setName($name) {
  37.         $this->name $name;
  38.         return $this;
  39.     }
  40.     /**
  41.      * Get name
  42.      *
  43.      * @return string
  44.      */
  45.     public function getName() {
  46.         return $this->name;
  47.     }
  48.     /**
  49.      * Set bkz
  50.      *
  51.      * @param string $bkz
  52.      *
  53.      * @return AddressDistrict
  54.      */
  55.     public function setBkz($bkz) {
  56.         $this->bkz $bkz;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get bkz
  61.      *
  62.      * @return string
  63.      */
  64.     public function getBkz() {
  65.         return $this->bkz;
  66.     }
  67.     /**
  68.      * Set addressState
  69.      *
  70.      * @param \App\Entity\AddressState $addressState
  71.      *
  72.      * @return AddressDistrict
  73.      */
  74.     public function setAddressState(\App\Entity\AddressState $addressState null) {
  75.         $this->addressState $addressState;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get addressState
  80.      *
  81.      * @return \App\Entity\AddressState
  82.      */
  83.     public function getAddressState() {
  84.         return $this->addressState;
  85.     }
  86.     /**
  87.      * Get country code
  88.      *
  89.      * @return string
  90.      */
  91.     public function getCountryCode() {
  92.         if (!is_null($this->addressState)) {
  93.             return $this->addressState->getCountryCode();
  94.         }
  95.         return '';
  96.     }
  97.     /**
  98.      * Get country
  99.      *
  100.      * @return string
  101.      */
  102.     public function getCountry() {
  103.         if (!is_null($this->addressState)) {
  104.             return $this->addressState->getCountry();
  105.         }
  106.         return '';
  107.     }
  108. }