@@ -79,7 +79,7 @@ |
||
| 79 | 79 | * @param \eZ\Publish\API\Repository\Values\Content\Query\SortClause $sortClause |
| 80 | 80 | * @param int $number |
| 81 | 81 | * |
| 82 | - * @return string |
|
| 82 | + * @return string[] |
|
| 83 | 83 | */ |
| 84 | 84 | public function applySelect(SelectQuery $query, SortClause $sortClause, $number) |
| 85 | 85 | { |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | * @param \eZ\Publish\API\Repository\Values\Content\Query\Criterion $criterion |
| 44 | 44 | * @param array $languageSettings |
| 45 | 45 | * |
| 46 | - * @return \eZ\Publish\Core\Persistence\Database\Expression |
|
| 46 | + * @return string |
|
| 47 | 47 | */ |
| 48 | 48 | public function handle( |
| 49 | 49 | CriteriaConverter $converter, |
@@ -219,8 +219,8 @@ |
||
| 219 | 219 | * |
| 220 | 220 | * @param Criterion $filter |
| 221 | 221 | * @param array $sort |
| 222 | - * @param mixed $offset |
|
| 223 | - * @param mixed $limit |
|
| 222 | + * @param integer $offset |
|
| 223 | + * @param integer $limit |
|
| 224 | 224 | * @param array $languageFilter |
| 225 | 225 | * |
| 226 | 226 | * @return int[] |
@@ -188,7 +188,7 @@ |
||
| 188 | 188 | * @param \eZ\Publish\API\Repository\Values\Content\Query\Criterion $criterion |
| 189 | 189 | * @param array $languageFilter |
| 190 | 190 | * |
| 191 | - * @return array |
|
| 191 | + * @return integer |
|
| 192 | 192 | */ |
| 193 | 193 | protected function getTotalCount(Criterion $criterion, array $languageFilter) |
| 194 | 194 | { |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | * $languageCode. |
| 362 | 362 | * |
| 363 | 363 | * @param Type $contentType |
| 364 | - * @param mixed $fieldValue |
|
| 364 | + * @param Content\FieldValue $fieldValue |
|
| 365 | 365 | * @param string $languageCode |
| 366 | 366 | * |
| 367 | 367 | * @return Content |
@@ -480,8 +480,8 @@ discard block |
||
| 480 | 480 | /** |
| 481 | 481 | * Performs an update on $contentId in $contentVersion setting $field. |
| 482 | 482 | * |
| 483 | - * @param mixed $contentId |
|
| 484 | - * @param mixed $contentVersion |
|
| 483 | + * @param string $contentId |
|
| 484 | + * @param string $contentVersion |
|
| 485 | 485 | * @param Field $field |
| 486 | 486 | * |
| 487 | 487 | * @return Content |
@@ -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); |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | * Registers an eZ Publish field type. |
| 42 | 42 | * Field types are being registered as a closure so that they will be lazy loaded. |
| 43 | 43 | * |
| 44 | - * @param string $nameableFieldTypeServiceId The field type nameable service Id |
|
| 44 | + * @param string $fieldTypeServiceId The field type nameable service Id |
|
| 45 | 45 | * @param string $fieldTypeAlias The field type alias (e.g. "ezstring") |
| 46 | 46 | */ |
| 47 | 47 | public function registerNonNameableFieldType($fieldTypeServiceId, $fieldTypeAlias) |