X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/c2c98c325c080c171b752a605ce8cf7dd9f2ed26..b55e9a8e7d1e5d43380d650129737dca42907375:/Entity/Location.php diff --git a/Entity/Location.php b/Entity/Location.php index 1fdca93..4af1280 100644 --- a/Entity/Location.php +++ b/Entity/Location.php @@ -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')); } }