@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * |
48 | 48 | * @param \eZ\Publish\SPI\Persistence\Content\UrlWildcard $urlWildcard |
49 | 49 | * |
50 | - * @return mixed |
|
50 | + * @return integer |
|
51 | 51 | */ |
52 | 52 | public function insertUrlWildcard(UrlWildcard $urlWildcard) |
53 | 53 | { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * Deletes the UrlWildcard with given $id. |
93 | 93 | * |
94 | - * @param mixed $id |
|
94 | + * @param integer $id |
|
95 | 95 | */ |
96 | 96 | public function deleteUrlWildcard($id) |
97 | 97 | { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | /** |
112 | 112 | * Loads an array with data about UrlWildcard with $id. |
113 | 113 | * |
114 | - * @param mixed $id |
|
114 | + * @param integer $id |
|
115 | 115 | * |
116 | 116 | * @return array |
117 | 117 | */ |
@@ -138,8 +138,8 @@ discard block |
||
138 | 138 | /** |
139 | 139 | * Loads an array with data about UrlWildcards (paged). |
140 | 140 | * |
141 | - * @param mixed $offset |
|
142 | - * @param mixed $limit |
|
141 | + * @param integer $offset |
|
142 | + * @param integer $limit |
|
143 | 143 | * |
144 | 144 | * @return array |
145 | 145 | */ |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | * @param \eZ\Publish\SPI\Persistence\Content\Type $type |
331 | 331 | * @param mixed|null $typeId |
332 | 332 | * |
333 | - * @return mixed Type ID |
|
333 | + * @return integer Type ID |
|
334 | 334 | */ |
335 | 335 | public function insertType(Type $type, $typeId = null) |
336 | 336 | { |
@@ -425,8 +425,8 @@ discard block |
||
425 | 425 | /** |
426 | 426 | * Insert assignment of $typeId to $groupId. |
427 | 427 | * |
428 | - * @param mixed $groupId |
|
429 | - * @param mixed $typeId |
|
428 | + * @param integer $groupId |
|
429 | + * @param integer $typeId |
|
430 | 430 | * @param int $status |
431 | 431 | */ |
432 | 432 | public function insertGroupAssignment($groupId, $typeId, $status) |
@@ -457,8 +457,8 @@ discard block |
||
457 | 457 | /** |
458 | 458 | * Deletes a group assignments for a Type. |
459 | 459 | * |
460 | - * @param mixed $groupId |
|
461 | - * @param mixed $typeId |
|
460 | + * @param integer $groupId |
|
461 | + * @param integer $typeId |
|
462 | 462 | * @param int $status |
463 | 463 | */ |
464 | 464 | public function deleteGroupAssignment($groupId, $typeId, $status) |
@@ -507,7 +507,7 @@ discard block |
||
507 | 507 | /** |
508 | 508 | * Loads data about Group with $identifier. |
509 | 509 | * |
510 | - * @param mixed $identifier |
|
510 | + * @param string $identifier |
|
511 | 511 | * |
512 | 512 | * @return string[][] |
513 | 513 | */ |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | /** |
567 | 567 | * Loads data for all Types in $status in $groupId. |
568 | 568 | * |
569 | - * @param mixed $groupId |
|
569 | + * @param integer $groupId |
|
570 | 570 | * @param int $status |
571 | 571 | * |
572 | 572 | * @return string[][] |
@@ -587,12 +587,12 @@ discard block |
||
587 | 587 | /** |
588 | 588 | * Inserts a $fieldDefinition for $typeId. |
589 | 589 | * |
590 | - * @param mixed $typeId |
|
590 | + * @param integer $typeId |
|
591 | 591 | * @param int $status |
592 | 592 | * @param \eZ\Publish\SPI\Persistence\Content\Type\FieldDefinition $fieldDefinition |
593 | 593 | * @param \eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldDefinition $storageFieldDef |
594 | 594 | * |
595 | - * @return mixed Field definition ID |
|
595 | + * @return integer Field definition ID |
|
596 | 596 | */ |
597 | 597 | public function insertFieldDefinition( |
598 | 598 | $typeId, |
@@ -808,9 +808,9 @@ discard block |
||
808 | 808 | /** |
809 | 809 | * Deletes a field definition. |
810 | 810 | * |
811 | - * @param mixed $typeId |
|
811 | + * @param integer $typeId |
|
812 | 812 | * @param int $status |
813 | - * @param mixed $fieldDefinitionId |
|
813 | + * @param integer $fieldDefinitionId |
|
814 | 814 | */ |
815 | 815 | public function deleteFieldDefinition($typeId, $status, $fieldDefinitionId) |
816 | 816 | { |
@@ -851,7 +851,7 @@ discard block |
||
851 | 851 | /** |
852 | 852 | * Updates a $fieldDefinition for $typeId. |
853 | 853 | * |
854 | - * @param mixed $typeId |
|
854 | + * @param integer $typeId |
|
855 | 855 | * @param int $status |
856 | 856 | * @param \eZ\Publish\SPI\Persistence\Content\Type\FieldDefinition $fieldDefinition |
857 | 857 | * @param \eZ\Publish\Core\Persistence\Legacy\Content\StorageFieldDefinition $storageFieldDef |
@@ -994,9 +994,8 @@ discard block |
||
994 | 994 | /** |
995 | 995 | * Update a type with $updateStruct. |
996 | 996 | * |
997 | - * @param mixed $typeId |
|
997 | + * @param integer $typeId |
|
998 | 998 | * @param int $status |
999 | - * @param \eZ\Publish\SPI\Persistence\Content\Type\UpdateStruct $updateStruct |
|
1000 | 999 | */ |
1001 | 1000 | public function updateType($typeId, $status, Type $type) |
1002 | 1001 | { |
@@ -1039,7 +1038,7 @@ discard block |
||
1039 | 1038 | /** |
1040 | 1039 | * Loads an array with data about $typeId in $status. |
1041 | 1040 | * |
1042 | - * @param mixed $typeId |
|
1041 | + * @param integer $typeId |
|
1043 | 1042 | * @param int $status |
1044 | 1043 | * |
1045 | 1044 | * @return array Data rows. |
@@ -1081,7 +1080,7 @@ discard block |
||
1081 | 1080 | * Loads an array with data about the type referred to by $remoteId in |
1082 | 1081 | * $status. |
1083 | 1082 | * |
1084 | - * @param mixed $remoteId |
|
1083 | + * @param string $remoteId |
|
1085 | 1084 | * @param int $status |
1086 | 1085 | * |
1087 | 1086 | * @return array(int=>array(string=>mixed)) Data rows. |
@@ -332,7 +332,7 @@ |
||
332 | 332 | } |
333 | 333 | |
334 | 334 | /** |
335 | - * @param mixed $locationId |
|
335 | + * @param integer $locationId |
|
336 | 336 | * @param bool $count |
337 | 337 | * |
338 | 338 | * @return \Doctrine\DBAL\Driver\Statement |
@@ -23,7 +23,7 @@ |
||
23 | 23 | final class ContentViewTwigVariablesSubscriberTest extends TestCase |
24 | 24 | { |
25 | 25 | /** |
26 | - * @return \eZ\Publish\Core\MVC\Symfony\View\ContentView|\PHPUnit\Framework\MockObject\MockObject |
|
26 | + * @return View |
|
27 | 27 | */ |
28 | 28 | private function getContentViewMock(): ContentView |
29 | 29 | { |
@@ -18,7 +18,6 @@ |
||
18 | 18 | use eZ\Publish\Core\Repository\Mapper\ContentDomainMapper; |
19 | 19 | use eZ\Publish\Core\Repository\Values\Content\Content; |
20 | 20 | use eZ\Publish\Core\Repository\Values\Content\VersionInfo; |
21 | -use eZ\Publish\SPI\Persistence\Content\ContentInfo; |
|
22 | 21 | use eZ\Publish\SPI\Persistence\Content\ContentInfo as SPIContentInfo; |
23 | 22 | use eZ\Publish\SPI\Persistence\Content\Location; |
24 | 23 | use eZ\Publish\API\Repository\Values\Content\Location as APILocation; |
@@ -118,7 +118,7 @@ |
||
118 | 118 | * Removes the old file referenced by $fieldId in $versionNo, if not |
119 | 119 | * referenced else where. |
120 | 120 | * |
121 | - * @param mixed $fieldId |
|
121 | + * @param integer $fieldId |
|
122 | 122 | * @param string $versionNo |
123 | 123 | * @param array $context |
124 | 124 | */ |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | /** |
74 | 74 | * Get language by id. |
75 | 75 | * |
76 | - * @param mixed $id |
|
76 | + * @param integer $id |
|
77 | 77 | * |
78 | 78 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If language could not be found by $id |
79 | 79 | * |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | /** |
180 | 180 | * Delete a language. |
181 | 181 | * |
182 | - * @param mixed $id |
|
182 | + * @param integer $id |
|
183 | 183 | */ |
184 | 184 | public function delete($id) |
185 | 185 | { |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | /** |
285 | 285 | * Returns a Content Gateway mock. |
286 | 286 | * |
287 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Gateway |
|
287 | + * @return Gateway |
|
288 | 288 | */ |
289 | 289 | protected function getContentGatewayMock() |
290 | 290 | { |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | /** |
299 | 299 | * Returns a Content StorageHandler mock. |
300 | 300 | * |
301 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler |
|
301 | + * @return StorageHandler |
|
302 | 302 | */ |
303 | 303 | protected function getContentStorageHandlerMock() |
304 | 304 | { |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | /** |
313 | 313 | * Returns a Content mapper mock. |
314 | 314 | * |
315 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper |
|
315 | + * @return ContentMapper |
|
316 | 316 | */ |
317 | 317 | protected function getContentMapperMock() |
318 | 318 | { |
@@ -1954,6 +1954,4 @@ |
||
1954 | 1954 | ->set($languageMaskColumnName, $languageMaskExpr) |
1955 | 1955 | ->setParameter('languageMaskOperand', $alwaysAvailable ? 1 : -2); |
1956 | 1956 | |
1957 | - return $query; |
|
1958 | - } |
|
1959 | -} |
|
1957 | + return $query |
|
1960 | 1958 | \ No newline at end of file |
@@ -1954,6 +1954,4 @@ |
||
1954 | 1954 | ->set($languageMaskColumnName, $languageMaskExpr) |
1955 | 1955 | ->setParameter('languageMaskOperand', $alwaysAvailable ? 1 : -2); |
1956 | 1956 | |
1957 | - return $query; |
|
1958 | - } |
|
1959 | -} |
|
1957 | + return $query |
|
1960 | 1958 | \ No newline at end of file |