X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/86539ad2f604e27c08750b5d129df5c79f80a088..b6450ed975565773a2dc1f6f19a46c6b436094db:/Entity/Title.php diff --git a/Entity/Title.php b/Entity/Title.php index 54a6a60..e6cc9e8 100644 --- a/Entity/Title.php +++ b/Entity/Title.php @@ -1,7 +1,41 @@ short = $short; + + return $this; + } + + /** + * Get short + * + * @return string + */ + public function getShort() { + return $this->short; + } + + /** + * Returns a string representation of the title + * + * @return string + */ + public function __toString(): string { + return $this->short; + } }