@@ -1966,6 +1966,4 @@ |
||
1966 | 1966 | $alwaysAvailable ? 1 : self::REMOVE_ALWAYS_AVAILABLE_LANG_MASK_OPERAND |
1967 | 1967 | ); |
1968 | 1968 | |
1969 | - return $query; |
|
1970 | - } |
|
1971 | -} |
|
1969 | + return $query |
|
1972 | 1970 | \ No newline at end of file |
@@ -39,9 +39,7 @@ |
||
39 | 39 | /** |
40 | 40 | * Can receive as many tuples of array( argumentName ), argumentValue as necessary. |
41 | 41 | * |
42 | - * @param $argumentString |
|
43 | - * @param string $dynamicSettingName .. |
|
44 | - * @param string $dynamicSettingValue .. |
|
42 | + * @param string $argumentString |
|
45 | 43 | * |
46 | 44 | * @return string |
47 | 45 | */ |
@@ -19,6 +19,9 @@ |
||
19 | 19 | /** @var string */ |
20 | 20 | private $originalTokenType; |
21 | 21 | |
22 | + /** |
|
23 | + * @param string $originalTokenType |
|
24 | + */ |
|
22 | 25 | public function __construct(UserInterface $user, $originalTokenType, $credentials, $providerKey, array $roles = []) |
23 | 26 | { |
24 | 27 | parent::__construct($user, $credentials, $providerKey, $roles); |
@@ -67,6 +67,10 @@ |
||
67 | 67 | /** @var \eZ\Publish\Core\MVC\Symfony\View\Configurator */ |
68 | 68 | private $viewConfigurator; |
69 | 69 | |
70 | + /** |
|
71 | + * @param string $viewBaseLayout |
|
72 | + * @param \PHPUnit\Framework\MockObject\MockObject $viewConfigurator |
|
73 | + */ |
|
70 | 74 | public function __construct( |
71 | 75 | Environment $templateEngine, |
72 | 76 | EventDispatcherInterface $eventDispatcher, |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | private $strategies = []; |
22 | 22 | |
23 | 23 | /** |
24 | - * @param \eZ\Publish\SPI\Repository\Strategy\ContentThumbnail\Field\FieldTypeBasedThumbnailStrategy[]|Traversable $strategies |
|
24 | + * @param Traversable $strategies |
|
25 | 25 | */ |
26 | 26 | public function __construct(Traversable $strategies) |
27 | 27 | { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
69 | - * @param \eZ\Publish\SPI\Repository\Strategy\ContentThumbnail\Field\FieldTypeBasedThumbnailStrategy[]|Traversable $thumbnailStrategies |
|
69 | + * @param FieldTypeBasedThumbnailStrategy[] $thumbnailStrategies |
|
70 | 70 | */ |
71 | 71 | public function setStrategies(array $thumbnailStrategies): void |
72 | 72 | { |
@@ -54,7 +54,7 @@ |
||
54 | 54 | * @param string $fieldDefIdentifier |
55 | 55 | * @param string $languageCode |
56 | 56 | * |
57 | - * @return mixed a primitive type or a field type Value object depending on the field type. |
|
57 | + * @return Value|null a primitive type or a field type Value object depending on the field type. |
|
58 | 58 | */ |
59 | 59 | public function getFieldValue(string $fieldDefIdentifier, ?string $languageCode = null): ?Value |
60 | 60 | { |
@@ -53,7 +53,7 @@ |
||
53 | 53 | * @param string $fieldDefIdentifier |
54 | 54 | * @param string|null $languageCode |
55 | 55 | * |
56 | - * @return mixed a primitive type or a field type Value object depending on the field type. |
|
56 | + * @return Value|null a primitive type or a field type Value object depending on the field type. |
|
57 | 57 | */ |
58 | 58 | public function getFieldValue(string $fieldDefIdentifier, ?string $languageCode = null): ?Value |
59 | 59 | { |
@@ -150,7 +150,7 @@ |
||
150 | 150 | * |
151 | 151 | * @param int $valueTypes The accepted values, as a bit field of Specifications::TYPE_* constants |
152 | 152 | * |
153 | - * @return callable |
|
153 | + * @return \Closure |
|
154 | 154 | */ |
155 | 155 | private function getValueTypeCheckCallback(int $valueTypes): callable |
156 | 156 | { |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * |
21 | 21 | * Will match of the given criterion doesn't match |
22 | 22 | * |
23 | - * @param \eZ\Publish\API\Repository\Values\Content\Query\Criterion[] $criteria One criterion, as an array |
|
23 | + * @param \eZ\Publish\API\Repository\Values\Content\Query\Criterion[] $criterion One criterion, as an array |
|
24 | 24 | * |
25 | 25 | * @throws \InvalidArgumentException if more than one criterion is given in the array parameter |
26 | 26 | */ |