We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d658162 + d8fc239 commit 26a4c3cCopy full SHA for 26a4c3c
1 file changed
lib/Tmdb/Model/Common/Translation.php
@@ -21,11 +21,13 @@
21
class Translation extends SpokenLanguage implements LanguageFilter
22
{
23
private $englishName;
24
+ private $data;
25
26
public static $properties = [
27
'iso_639_1',
28
'name',
- 'english_name'
29
+ 'english_name',
30
+ 'data'
31
];
32
33
/**
@@ -46,4 +48,23 @@ public function getEnglishName()
46
48
47
49
return $this->englishName;
50
}
51
+
52
+ /**
53
+ * @param string $data
54
+ * @return $this
55
+ */
56
+ public function setData($data)
57
+ {
58
+ $this->data = $data;
59
60
+ return $this;
61
+ }
62
63
64
+ * @return string
65
66
+ public function getData()
67
68
+ return $this->data;
69
70
0 commit comments