@@ -35,7 +35,7 @@ |
||
35 | 35 | /** |
36 | 36 | * Returns a repository specific ID manager. |
37 | 37 | * |
38 | - * @return \eZ\Publish\API\Repository\Tests\IdManager |
|
38 | + * @return IdManager |
|
39 | 39 | */ |
40 | 40 | public function getIdManager() |
41 | 41 | { |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * @param \eZ\Publish\Core\REST\Common\Output\Generator $generator |
71 | 71 | * @param bool $boolValue |
72 | 72 | * |
73 | - * @return mixed |
|
73 | + * @return string |
|
74 | 74 | */ |
75 | 75 | protected function serializeBool(Generator $generator, $boolValue) |
76 | 76 | { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * |
105 | 105 | * @param \eZ\Publish\Core\REST\Common\Output\Generator $generator |
106 | 106 | * @param array $translatedElements |
107 | - * @param mixed $listName |
|
107 | + * @param string $listName |
|
108 | 108 | */ |
109 | 109 | protected function visitTranslatedList(Generator $generator, array $translatedElements, $listName) |
110 | 110 | { |
@@ -76,10 +76,9 @@ |
||
76 | 76 | /** |
77 | 77 | * Parse URL and return the IDs contained in the URL. |
78 | 78 | * |
79 | - * @param string $type |
|
80 | 79 | * @param string $url |
81 | 80 | * |
82 | - * @return array |
|
81 | + * @return string[] |
|
83 | 82 | */ |
84 | 83 | public function parse($url) |
85 | 84 | { |
@@ -185,6 +185,9 @@ |
||
185 | 185 | return $this->getGenerator()->endDocument('Version'); |
186 | 186 | } |
187 | 187 | |
188 | + /** |
|
189 | + * @param string $functionName |
|
190 | + */ |
|
188 | 191 | private function assertSerializationSame($functionName) |
189 | 192 | { |
190 | 193 | $fixtureFile = $this->getFixtureFile($functionName); |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | namespace eZ\Publish\Core\REST\Server\Controller; |
12 | 12 | |
13 | 13 | use eZ\Publish\API\Repository\Exceptions\LimitationValidationException; |
14 | -use eZ\Publish\API\Repository\Exceptions\NotFoundException; |
|
14 | +use eZ\Publish\API\Repository\Exceptions\NotFoundException as APINotFoundException; |
|
15 | 15 | use eZ\Publish\Core\Base\Exceptions\ForbiddenException; |
16 | 16 | use eZ\Publish\Core\Base\Exceptions\InvalidArgumentException; |
17 | 17 | use eZ\Publish\Core\Base\Exceptions\UnauthorizedException; |
@@ -25,7 +25,6 @@ discard block |
||
25 | 25 | use eZ\Publish\API\Repository\LocationService; |
26 | 26 | use eZ\Publish\API\Repository\Values\User\RoleCreateStruct; |
27 | 27 | use eZ\Publish\API\Repository\Values\User\RoleUpdateStruct; |
28 | -use eZ\Publish\API\Repository\Exceptions\NotFoundException as APINotFoundException; |
|
29 | 28 | use Symfony\Component\HttpFoundation\Request; |
30 | 29 | |
31 | 30 | /** |
@@ -91,7 +91,7 @@ |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | - * @param string|Twig_Template $baseTemplate |
|
94 | + * @param string $baseTemplate |
|
95 | 95 | */ |
96 | 96 | public function setBaseTemplate($baseTemplate) |
97 | 97 | { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | /** |
61 | 61 | * Update name and identifier of a section. |
62 | 62 | * |
63 | - * @param mixed $id |
|
63 | + * @param integer $id |
|
64 | 64 | * @param string $name |
65 | 65 | * @param string $identifier |
66 | 66 | * |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | /** |
82 | 82 | * Get section data. |
83 | 83 | * |
84 | - * @param mixed $id |
|
84 | + * @param integer $id |
|
85 | 85 | * |
86 | 86 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If section is not found |
87 | 87 | * |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | * content objects. Make sure that no content objects are associated with |
173 | 173 | * the section any more *before* calling this method. |
174 | 174 | * |
175 | - * @param mixed $id |
|
175 | + * @param integer $id |
|
176 | 176 | */ |
177 | 177 | public function delete($id) |
178 | 178 | { |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | /** |
190 | 190 | * Assigns section to single content object. |
191 | 191 | * |
192 | - * @param mixed $sectionId |
|
193 | - * @param mixed $contentId |
|
192 | + * @param integer $sectionId |
|
193 | + * @param integer $contentId |
|
194 | 194 | */ |
195 | 195 | public function assign($sectionId, $contentId) |
196 | 196 | { |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | /** |
213 | 213 | * Number of role policies using a Section in limitations. |
214 | 214 | * |
215 | - * @param mixed $sectionId |
|
215 | + * @param integer $sectionId |
|
216 | 216 | * |
217 | 217 | * @return int |
218 | 218 | */ |
@@ -32,6 +32,9 @@ discard block |
||
32 | 32 | */ |
33 | 33 | protected $formatOutput = false; |
34 | 34 | |
35 | + /** |
|
36 | + * @param boolean $formatOutput |
|
37 | + */ |
|
35 | 38 | public function setFormatOutput($formatOutput) |
36 | 39 | { |
37 | 40 | $this->formatOutput = (bool)$formatOutput; |
@@ -108,7 +111,7 @@ discard block |
||
108 | 111 | /** |
109 | 112 | * Check start object element. |
110 | 113 | * |
111 | - * @param mixed $data |
|
114 | + * @param string $data |
|
112 | 115 | */ |
113 | 116 | protected function checkStartObjectElement($data) |
114 | 117 | { |
@@ -136,7 +139,7 @@ discard block |
||
136 | 139 | /** |
137 | 140 | * Check end object element. |
138 | 141 | * |
139 | - * @param mixed $data |
|
142 | + * @param string $data |
|
140 | 143 | */ |
141 | 144 | protected function checkEndObjectElement($data) |
142 | 145 | { |
@@ -153,7 +156,7 @@ discard block |
||
153 | 156 | /** |
154 | 157 | * Check start hash element. |
155 | 158 | * |
156 | - * @param mixed $data |
|
159 | + * @param string $data |
|
157 | 160 | */ |
158 | 161 | protected function checkStartHashElement($data) |
159 | 162 | { |
@@ -181,7 +184,7 @@ discard block |
||
181 | 184 | /** |
182 | 185 | * Check end hash element. |
183 | 186 | * |
184 | - * @param mixed $data |
|
187 | + * @param string $data |
|
185 | 188 | */ |
186 | 189 | protected function checkEndHashElement($data) |
187 | 190 | { |
@@ -199,7 +202,7 @@ discard block |
||
199 | 202 | /** |
200 | 203 | * Check start value element. |
201 | 204 | * |
202 | - * @param mixed $data |
|
205 | + * @param string $data |
|
203 | 206 | */ |
204 | 207 | protected function checkStartValueElement($data) |
205 | 208 | { |
@@ -216,7 +219,7 @@ discard block |
||
216 | 219 | /** |
217 | 220 | * Check end value element. |
218 | 221 | * |
219 | - * @param mixed $data |
|
222 | + * @param string $data |
|
220 | 223 | */ |
221 | 224 | protected function checkEndValueElement($data) |
222 | 225 | { |
@@ -233,7 +236,7 @@ discard block |
||
233 | 236 | /** |
234 | 237 | * Check start list. |
235 | 238 | * |
236 | - * @param mixed $data |
|
239 | + * @param string $data |
|
237 | 240 | */ |
238 | 241 | protected function checkStartList($data) |
239 | 242 | { |
@@ -250,7 +253,7 @@ discard block |
||
250 | 253 | /** |
251 | 254 | * Check end list. |
252 | 255 | * |
253 | - * @param mixed $data |
|
256 | + * @param string $data |
|
254 | 257 | */ |
255 | 258 | protected function checkEndList($data) |
256 | 259 | { |
@@ -268,7 +271,7 @@ discard block |
||
268 | 271 | /** |
269 | 272 | * Check start attribute. |
270 | 273 | * |
271 | - * @param mixed $data |
|
274 | + * @param string $data |
|
272 | 275 | */ |
273 | 276 | protected function checkStartAttribute($data) |
274 | 277 | { |
@@ -285,7 +288,7 @@ discard block |
||
285 | 288 | /** |
286 | 289 | * Check end attribute. |
287 | 290 | * |
288 | - * @param mixed $data |
|
291 | + * @param string $data |
|
289 | 292 | */ |
290 | 293 | protected function checkEndAttribute($data) |
291 | 294 | { |
@@ -329,7 +332,7 @@ discard block |
||
329 | 332 | * |
330 | 333 | * @param string $type |
331 | 334 | * @param mixed $data |
332 | - * @param array $validParents |
|
335 | + * @param string[] $validParents |
|
333 | 336 | */ |
334 | 337 | protected function checkStart($type, $data, array $validParents) |
335 | 338 | { |
@@ -393,7 +396,7 @@ discard block |
||
393 | 396 | * |
394 | 397 | * @param bool $boolValue |
395 | 398 | * |
396 | - * @return mixed |
|
399 | + * @return string |
|
397 | 400 | */ |
398 | 401 | abstract public function serializeBool($boolValue); |
399 | 402 | } |
@@ -213,6 +213,11 @@ |
||
213 | 213 | $this->assertFalse($normalizer->accept($input)); |
214 | 214 | } |
215 | 215 | |
216 | + /** |
|
217 | + * @param string $documentElement |
|
218 | + * @param string $namespace |
|
219 | + * @param string $dtdPath |
|
220 | + */ |
|
216 | 221 | protected function getNormalizer($documentElement, $namespace, $dtdPath) |
217 | 222 | { |
218 | 223 | return new DocumentTypeDefinition($documentElement, $namespace, $dtdPath); |