@@ -188,7 +188,7 @@ |
||
188 | 188 | * @param \eZ\Publish\API\Repository\Values\ValueObject $object The object to check if the user has access to |
189 | 189 | * @param mixed $targets The location, parent or "assignment" value object, or an array of the same |
190 | 190 | * |
191 | - * @return bool |
|
191 | + * @return boolean|null |
|
192 | 192 | */ |
193 | 193 | public function canUser($module, $function, ValueObject $object, $targets = null) |
194 | 194 | { |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | * |
559 | 559 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read the roles |
560 | 560 | * |
561 | - * @return \eZ\Publish\API\Repository\Values\User\Role[] |
|
561 | + * @return \eZ\Publish\API\Repository\Values\ValueObject |
|
562 | 562 | */ |
563 | 563 | public function loadRoles() |
564 | 564 | { |
@@ -606,7 +606,7 @@ discard block |
||
606 | 606 | * |
607 | 607 | * @param mixed $userId |
608 | 608 | * |
609 | - * @return \eZ\Publish\API\Repository\Values\User\Policy[] |
|
609 | + * @return \eZ\Publish\API\Repository\Values\ValueObject |
|
610 | 610 | */ |
611 | 611 | public function loadPoliciesByUserId($userId) |
612 | 612 | { |
@@ -170,7 +170,7 @@ |
||
170 | 170 | * |
171 | 171 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If the current user user is not allowed to read a section |
172 | 172 | * |
173 | - * @return array of {@link \eZ\Publish\API\Repository\Values\Content\Section} |
|
173 | + * @return \eZ\Publish\API\Repository\Values\ValueObject of {@link \eZ\Publish\API\Repository\Values\Content\Section} |
|
174 | 174 | */ |
175 | 175 | public function loadSections() |
176 | 176 | { |
@@ -44,7 +44,7 @@ |
||
44 | 44 | * @param string $type |
45 | 45 | * @param mixed $rawId |
46 | 46 | * |
47 | - * @return mixed |
|
47 | + * @return string |
|
48 | 48 | */ |
49 | 49 | public function generateId($type, $rawId) |
50 | 50 | { |
@@ -23,7 +23,7 @@ |
||
23 | 23 | * |
24 | 24 | * @todo test with limitations |
25 | 25 | * |
26 | - * @return \eZ\Publish\Core\REST\Client\Values\User\RoleAssignment |
|
26 | + * @return string |
|
27 | 27 | */ |
28 | 28 | public function testVisitComplete() |
29 | 29 | { |
@@ -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 | { |
@@ -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 | */ |
@@ -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); |