]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Entity/Location.php
Remove short title
[airbundle] / Entity / Location.php
index 1fdca93803149aa9a4c241536af7b21366d0d3e4..4af12808f9cf23e92cd57565941383fe03ee3048 100644 (file)
@@ -28,11 +28,6 @@ class Location {
         */
        private $title;
 
-       /**
-        * @var string
-        */
-       private $short;
-
        /**
         * @var string
         */
@@ -128,28 +123,6 @@ class Location {
                return $this->title;
        }
 
-       /**
-        * Set short
-        *
-        * @param string $short
-        *
-        * @return Location
-        */
-       public function setShort(string $short): Location {
-               $this->short = $short;
-
-               return $this;
-       }
-
-       /**
-        * Get short
-        *
-        * @return string
-        */
-       public function getShort(): string {
-               return $this->short;
-       }
-
        /**
         * Set address
         *
@@ -427,9 +400,9 @@ class Location {
         */
        public function preUpdate(PreUpdateEventArgs $eventArgs) {
                //Check that we have a location instance
-               if (($user = $eventArgs->getEntity()) instanceof Location) {
+               if (($location = $eventArgs->getEntity()) instanceof Location) {
                        //Set updated value
-                       $user->setUpdated(new \DateTime('now'));
+                       $location->setUpdated(new \DateTime('now'));
                }
        }