1 | <?php |
||
14 | class AppCollectionType extends IsOK |
||
15 | { |
||
16 | use IsOKToolboxTrait, XSDTopLevelTrait; |
||
17 | |||
18 | /** |
||
19 | * @property string $href |
||
20 | */ |
||
21 | private $href = null; |
||
22 | |||
23 | /** |
||
24 | * @property \AlgoWeb\ODataMetadata\Atom\Title $title |
||
25 | */ |
||
26 | private $title = null; |
||
27 | |||
28 | /** |
||
29 | * @property string[] $accept |
||
30 | */ |
||
31 | private $accept = array(); |
||
32 | |||
33 | /** |
||
34 | * @property \AlgoWeb\ODataMetadata\App\AppCategoriesType[] $categories |
||
35 | */ |
||
36 | private $categories = array(); |
||
37 | |||
38 | /** |
||
39 | * Gets as href |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getHref() |
||
47 | |||
48 | /** |
||
49 | * Sets a new href |
||
50 | * |
||
51 | * @param string $href |
||
52 | * @return self |
||
53 | */ |
||
54 | public function setHref($href) |
||
59 | |||
60 | /** |
||
61 | * Gets as title |
||
62 | * |
||
63 | * @return \AlgoWeb\ODataMetadata\Atom\Title |
||
64 | */ |
||
65 | public function getTitle() |
||
69 | |||
70 | /** |
||
71 | * Sets a new title |
||
72 | * |
||
73 | * @param \AlgoWeb\ODataMetadata\Atom\Title $title |
||
74 | * @return self |
||
75 | */ |
||
76 | public function setTitle(\AlgoWeb\ODataMetadata\Atom\Title $title) |
||
81 | |||
82 | /** |
||
83 | * Adds as accept |
||
84 | * |
||
85 | * @return self |
||
86 | * @param string $accept |
||
87 | */ |
||
88 | public function addToAccept($accept) |
||
93 | |||
94 | /** |
||
95 | * isset accept |
||
96 | * |
||
97 | * @param scalar $index |
||
98 | * @return boolean |
||
99 | */ |
||
100 | public function issetAccept($index) |
||
104 | |||
105 | /** |
||
106 | * unset accept |
||
107 | * |
||
108 | * @param scalar $index |
||
109 | * @return void |
||
110 | */ |
||
111 | public function unsetAccept($index) |
||
115 | |||
116 | /** |
||
117 | * Gets as accept |
||
118 | * |
||
119 | * @return string[] |
||
120 | */ |
||
121 | public function getAccept() |
||
125 | |||
126 | /** |
||
127 | * Sets a new accept |
||
128 | * |
||
129 | * @param string[] $accept |
||
130 | * @return self |
||
131 | */ |
||
132 | public function setAccept(array $accept) |
||
137 | |||
138 | /** |
||
139 | * Adds as categories |
||
140 | * |
||
141 | * @return self |
||
142 | * @param \AlgoWeb\ODataMetadata\App\AppCategoriesType $categories |
||
143 | */ |
||
144 | public function addToCategories(\AlgoWeb\ODataMetadata\App\AppCategoriesType $categories) |
||
149 | |||
150 | /** |
||
151 | * isset categories |
||
152 | * |
||
153 | * @param scalar $index |
||
154 | * @return boolean |
||
155 | */ |
||
156 | public function issetCategories($index) |
||
160 | |||
161 | /** |
||
162 | * unset categories |
||
163 | * |
||
164 | * @param scalar $index |
||
165 | * @return void |
||
166 | */ |
||
167 | public function unsetCategories($index) |
||
171 | |||
172 | /** |
||
173 | * Gets as categories |
||
174 | * |
||
175 | * @return \AlgoWeb\ODataMetadata\App\AppCategoriesType[] |
||
176 | */ |
||
177 | public function getCategories() |
||
181 | |||
182 | /** |
||
183 | * Sets a new categories |
||
184 | * |
||
185 | * @param \AlgoWeb\ODataMetadata\App\AppCategoriesType[] $categories |
||
186 | * @return self |
||
187 | */ |
||
188 | public function setCategories(array $categories) |
||
193 | |||
194 | public function isOK(&$msg = null) |
||
206 | } |
||
207 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.