We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9f32207 + e4b921e commit 06e79baCopy full SHA for 06e79ba
spec/epg.xml
@@ -10,6 +10,7 @@
10
<sub-title lang="">subtitle</sub-title>
11
<desc lang="">desc</desc>
12
<date>1999</date>
13
+ <category lang="">category</category>
14
<keyword lang="">keyword</keyword>
15
</programme>
16
</tv>
src/Tv/Programme.php
@@ -229,6 +229,7 @@ public function xmlSerialize(): XmlElement
229
->withChildren($this->getSubTitles())
230
->withChildren($this->getDescriptions())
231
->withChild(new XmlElement('date', $this->date))
232
+ ->withChildren($this->getCategories())
233
->withChildren($this->getKeywords())
234
->withChild(new XmlElement('language', $this->language))
235
->withChild(new XmlElement('orig-language', $this->origLanguage));
0 commit comments