diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2019-11-30 01:15:39 +0100 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2019-12-08 02:20:51 +0100 |
commit | 47e209e12594b935ba1670096ae4c55538ebde94 (patch) | |
tree | 656e845a012f0b796e6a79faa40ec5e512d00dd6 /src | |
parent | 42721e95726559b4a601240bb5b0fe4e5d755b2a (diff) |
ImportSchedule: Append talk language to shift title
Resolves #587 (Include talk language into Frab-imported shift titles)
Diffstat (limited to 'src')
-rw-r--r-- | src/Helpers/Schedule/Event.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Helpers/Schedule/Event.php b/src/Helpers/Schedule/Event.php index 46970e7b..ab3b39a5 100644 --- a/src/Helpers/Schedule/Event.php +++ b/src/Helpers/Schedule/Event.php @@ -184,6 +184,14 @@ class Event } /** + * @param string $title + */ + public function setTitle(string $title): void + { + $this->title = $title; + } + + /** * @return string */ public function getSubtitle(): string |