- /**
- * 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;
- }
-