@@ -13,7 +13,6 @@ |
||
13 | 13 | use eZ\Publish\Core\FieldType\BinaryBase\Type as BinaryBaseType; |
14 | 14 | use eZ\Publish\SPI\Persistence\Content\FieldValue; |
15 | 15 | use eZ\Publish\SPI\FieldType\Value as SPIValue; |
16 | -use eZ\Publish\Core\FieldType\Value as BaseValue; |
|
17 | 16 | |
18 | 17 | /** |
19 | 18 | * The TextLine field type. |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use eZ\Publish\Core\MVC\Symfony\RequestStackAware; |
16 | 16 | use eZ\Publish\Core\MVC\Symfony\Routing\RouteReference; |
17 | 17 | use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
18 | -use Symfony\Component\HttpFoundation\Request; |
|
19 | 18 | |
20 | 19 | class RouteReferenceGenerator implements RouteReferenceGeneratorInterface |
21 | 20 | { |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | /** |
434 | 434 | * Loads role assignment for specified assignment ID. |
435 | 435 | * |
436 | - * @param mixed $roleAssignmentId |
|
436 | + * @param integer $roleAssignmentId |
|
437 | 437 | * |
438 | 438 | * @return array |
439 | 439 | */ |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | /** |
465 | 465 | * Loads role assignments for specified content ID. |
466 | 466 | * |
467 | - * @param mixed $groupId |
|
467 | + * @param integer $groupId |
|
468 | 468 | * @param bool $inherited |
469 | 469 | * |
470 | 470 | * @return array |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | /** |
510 | 510 | * Loads role assignments for given role ID. |
511 | 511 | * |
512 | - * @param mixed $roleId |
|
512 | + * @param integer $roleId |
|
513 | 513 | * |
514 | 514 | * @return array |
515 | 515 | */ |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | * @param string $operator |
197 | 197 | * @param string $value |
198 | 198 | * |
199 | - * @return callback |
|
199 | + * @return \Closure |
|
200 | 200 | */ |
201 | 201 | protected function getTransposeClosure($operator, $value) |
202 | 202 | { |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | * |
217 | 217 | * @param string $char |
218 | 218 | * |
219 | - * @return callback |
|
219 | + * @return \Closure |
|
220 | 220 | */ |
221 | 221 | protected function compileTargetCharacter($char) |
222 | 222 | { |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
156 | - * @return \eZ\Publish\API\Repository\Values\Content\Field[] |
|
156 | + * @return Field[] |
|
157 | 157 | */ |
158 | 158 | protected function getFields() |
159 | 159 | { |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
207 | - * @return \eZ\Publish\Core\Repository\Values\ContentType\FieldDefinition[] |
|
207 | + * @return FieldDefinition[] |
|
208 | 208 | */ |
209 | 209 | protected function getFieldDefinitions() |
210 | 210 | { |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * Returns the fallback default value of field type when no such default |
155 | 155 | * value is provided in the field definition in content types. |
156 | 156 | * |
157 | - * @return mixed |
|
157 | + * @return Value |
|
158 | 158 | */ |
159 | 159 | public function getEmptyValue() |
160 | 160 | { |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | * |
185 | 185 | * @param mixed $hash |
186 | 186 | * |
187 | - * @return mixed |
|
187 | + * @return Value |
|
188 | 188 | */ |
189 | 189 | public function fromHash($hash) |
190 | 190 | { |
@@ -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[] |