src/Entity/AddressLatLon.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class AddressLatLon
  5. {
  6.     /**
  7.      * @var integer
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $lat;
  14.     /**
  15.      * @var string
  16.      */
  17.     private $lon;
  18.     /**
  19.      * Get id
  20.      *
  21.      * @return integer
  22.      */
  23.     public function getId()
  24.     {
  25.         return $this->id;
  26.     }
  27.     /**
  28.      * Set lat
  29.      *
  30.      * @param string $lat
  31.      *
  32.      * @return AddressLatLon
  33.      */
  34.     public function setLat($lat)
  35.     {
  36.         $this->lat $lat;
  37.         return $this;
  38.     }
  39.     /**
  40.      * Get lat
  41.      *
  42.      * @return string
  43.      */
  44.     public function getLat()
  45.     {
  46.         return $this->lat;
  47.     }
  48.     /**
  49.      * Set lon
  50.      *
  51.      * @param string $lon
  52.      *
  53.      * @return AddressLatLon
  54.      */
  55.     public function setLon($lon)
  56.     {
  57.         $this->lon $lon;
  58.         return $this;
  59.     }
  60.     /**
  61.      * Get lon
  62.      *
  63.      * @return string
  64.      */
  65.     public function getLon()
  66.     {
  67.         return $this->lon;
  68.     }
  69.     /**
  70.      * @var \App\Entity\Address
  71.      */
  72.     private $address;
  73.     /**
  74.      * Set address.
  75.      *
  76.      * @param \App\Entity\Address|null $address
  77.      *
  78.      * @return AddressLatLon
  79.      */
  80.     public function setAddress(\App\Entity\Address $address null)
  81.     {
  82.         $this->address $address;
  83.         return $this;
  84.     }
  85.     /**
  86.      * Get address.
  87.      *
  88.      * @return \App\Entity\Address|null
  89.      */
  90.     public function getAddress()
  91.     {
  92.         return $this->address;
  93.     }
  94. }