@@ -150,6 +150,9 @@ |
||
| 150 | 150 | return $content; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | + /** |
|
| 154 | + * @param string $tpl |
|
| 155 | + */ |
|
| 153 | 156 | private function getTemplatePath($tpl) |
| 154 | 157 | { |
| 155 | 158 | return 'templates/' . $tpl; |
@@ -365,10 +365,10 @@ discard block |
||
| 365 | 365 | * destination, identified by $destinationParentId. Relations do not need |
| 366 | 366 | * to be updated, since they refer to Content. URLs are not touched. |
| 367 | 367 | * |
| 368 | - * @param mixed $sourceId |
|
| 369 | - * @param mixed $destinationParentId |
|
| 368 | + * @param integer $sourceId |
|
| 369 | + * @param integer $destinationParentId |
|
| 370 | 370 | * |
| 371 | - * @return bool |
|
| 371 | + * @return boolean|null |
|
| 372 | 372 | */ |
| 373 | 373 | public function move($sourceId, $destinationParentId) |
| 374 | 374 | { |
@@ -411,7 +411,7 @@ discard block |
||
| 411 | 411 | /** |
| 412 | 412 | * Sets a location to be hidden, and it self + all children to invisible. |
| 413 | 413 | * |
| 414 | - * @param mixed $id Location ID |
|
| 414 | + * @param integer $id Location ID |
|
| 415 | 415 | */ |
| 416 | 416 | public function hide($id) |
| 417 | 417 | { |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | * Sets a location to be unhidden, and self + children to visible unless a parent is hiding the tree. |
| 425 | 425 | * If not make sure only children down to first hidden node is marked visible. |
| 426 | 426 | * |
| 427 | - * @param mixed $id |
|
| 427 | + * @param integer $id |
|
| 428 | 428 | */ |
| 429 | 429 | public function unHide($id) |
| 430 | 430 | { |
@@ -439,10 +439,10 @@ discard block |
||
| 439 | 439 | * Make the location identified by $locationId1 refer to the Content |
| 440 | 440 | * referred to by $locationId2 and vice versa. |
| 441 | 441 | * |
| 442 | - * @param mixed $locationId1 |
|
| 443 | - * @param mixed $locationId2 |
|
| 442 | + * @param integer $locationId1 |
|
| 443 | + * @param integer $locationId2 |
|
| 444 | 444 | * |
| 445 | - * @return bool |
|
| 445 | + * @return boolean|null |
|
| 446 | 446 | */ |
| 447 | 447 | public function swap($locationId1, $locationId2) |
| 448 | 448 | { |
@@ -489,9 +489,9 @@ discard block |
||
| 489 | 489 | * main Location will get the first of its other Locations assigned as the |
| 490 | 490 | * new main Location. |
| 491 | 491 | * |
| 492 | - * @param mixed $locationId |
|
| 492 | + * @param integer $locationId |
|
| 493 | 493 | * |
| 494 | - * @return bool |
|
| 494 | + * @return boolean|null |
|
| 495 | 495 | */ |
| 496 | 496 | public function removeSubtree($locationId) |
| 497 | 497 | { |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | * Set section on all content objects in the subtree. |
| 503 | 503 | * |
| 504 | 504 | * @param mixed $locationId |
| 505 | - * @param mixed $sectionId |
|
| 505 | + * @param integer $sectionId |
|
| 506 | 506 | */ |
| 507 | 507 | public function setSectionForSubtree($locationId, $sectionId) |
| 508 | 508 | { |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | /** |
| 384 | 384 | * Returns a Mapper with conversion methods mocked. |
| 385 | 385 | * |
| 386 | - * @return Mapper |
|
| 386 | + * @return \PHPUnit\Framework\MockObject\MockObject |
|
| 387 | 387 | */ |
| 388 | 388 | protected function getNonConvertingMapper() |
| 389 | 389 | { |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | /** |
| 414 | 414 | * Returns a converter registry mock. |
| 415 | 415 | * |
| 416 | - * @return \eZ\Publish\Core\Persistence\Legacy\Content\FieldValue\ConverterRegistry |
|
| 416 | + * @return \PHPUnit\Framework\MockObject\MockObject |
|
| 417 | 417 | */ |
| 418 | 418 | protected function getConverterRegistryMock() |
| 419 | 419 | { |
@@ -9,10 +9,9 @@ |
||
| 9 | 9 | namespace eZ\Publish\Core\MVC\Symfony\SiteAccess\Tests; |
| 10 | 10 | |
| 11 | 11 | use eZ\Publish\Core\MVC\Symfony\SiteAccess; |
| 12 | -use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIElement; |
|
| 12 | +use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIElement as URIElementMatcher; |
|
| 13 | 13 | use PHPUnit\Framework\TestCase; |
| 14 | 14 | use eZ\Publish\Core\MVC\Symfony\SiteAccess\Router; |
| 15 | -use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIElement as URIElementMatcher; |
|
| 16 | 15 | use eZ\Publish\Core\MVC\Symfony\Routing\SimplifiedRequest; |
| 17 | 16 | use eZ\Publish\Core\MVC\Symfony\SiteAccess\MatcherBuilder; |
| 18 | 17 | use Psr\Log\LoggerInterface; |
@@ -100,6 +100,9 @@ |
||
| 100 | 100 | ); |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | + /** |
|
| 104 | + * @return DeprecationWarnerInterface |
|
| 105 | + */ |
|
| 103 | 106 | public function getDeprecationWarnerMock() |
| 104 | 107 | { |
| 105 | 108 | if (!isset($this->deprecationWarnerMock)) { |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | use eZ\Publish\API\Repository\ContentTypeService as APIContentTypeService; |
| 15 | 15 | use eZ\Publish\API\Repository\LocationService as APILocationService; |
| 16 | 16 | use eZ\Publish\API\Repository\Exceptions\NotFoundException as APINotFoundException; |
| 17 | -use eZ\Publish\API\Repository\Values\Content\ContentInfo as APIContentInfo; |
|
| 17 | +use eZ\Publish\API\Repository\Values\Content\ContentInfo; |
|
| 18 | 18 | use eZ\Publish\API\Repository\Values\ContentType\ContentType as APIContentType; |
| 19 | 19 | use eZ\Publish\API\Repository\Values\Content\Location as APILocation; |
| 20 | 20 | use eZ\Publish\API\Repository\Values\ContentType\FieldDefinition as APIFieldDefinition; |
@@ -33,7 +33,6 @@ discard block |
||
| 33 | 33 | use eZ\Publish\Core\Repository\Helper\NameSchemaService; |
| 34 | 34 | use eZ\Publish\API\Repository\Values\Content\Field; |
| 35 | 35 | use eZ\Publish\Core\FieldType\Value; |
| 36 | -use eZ\Publish\API\Repository\Values\Content\ContentInfo; |
|
| 37 | 36 | use eZ\Publish\API\Repository\Values\Content\VersionInfo as APIVersionInfo; |
| 38 | 37 | use eZ\Publish\Core\Repository\Values\ContentType\ContentType; |
| 39 | 38 | use eZ\Publish\Core\Repository\Values\ContentType\FieldDefinition; |
@@ -1038,7 +1038,7 @@ discard block |
||
| 1038 | 1038 | * @param string $mainLanguageCode |
| 1039 | 1039 | * @param \eZ\Publish\API\Repository\Values\Content\Field[] $structFields |
| 1040 | 1040 | * @param \eZ\Publish\API\Repository\Values\ContentType\FieldDefinition[] $fieldDefinitions |
| 1041 | - * @param array $languageCodes |
|
| 1041 | + * @param string[] $languageCodes |
|
| 1042 | 1042 | * |
| 1043 | 1043 | * @return array |
| 1044 | 1044 | */ |
@@ -1112,10 +1112,9 @@ discard block |
||
| 1112 | 1112 | * @param \eZ\Publish\SPI\Persistence\Content\Field[] $spiFields |
| 1113 | 1113 | * @param \eZ\Publish\API\Repository\Values\ContentType\FieldDefinition[] $fieldDefinitions |
| 1114 | 1114 | * @param \eZ\Publish\API\Repository\Values\Content\LocationCreateStruct[] $locationCreateStructs |
| 1115 | - * @param \eZ\Publish\SPI\Persistence\Content\ObjectState\Group[] $objectStateGroups |
|
| 1116 | 1115 | * @param bool $execute |
| 1117 | 1116 | * |
| 1118 | - * @return mixed |
|
| 1117 | + * @return ContentCreateStruct |
|
| 1119 | 1118 | */ |
| 1120 | 1119 | protected function assertForTestCreateContentNonRedundantFieldSet( |
| 1121 | 1120 | $mainLanguageCode, |
@@ -2000,7 +1999,7 @@ discard block |
||
| 2000 | 1999 | * @param \eZ\Publish\API\Repository\Values\Content\Field[] $structFields |
| 2001 | 2000 | * @param \eZ\Publish\API\Repository\Values\ContentType\FieldDefinition[] $fieldDefinitions |
| 2002 | 2001 | * |
| 2003 | - * @return mixed |
|
| 2002 | + * @return ContentCreateStruct |
|
| 2004 | 2003 | */ |
| 2005 | 2004 | protected function assertForTestCreateContentRequiredField( |
| 2006 | 2005 | $mainLanguageCode, |
@@ -4809,6 +4808,10 @@ discard block |
||
| 4809 | 4808 | ); |
| 4810 | 4809 | } |
| 4811 | 4810 | |
| 4811 | + /** |
|
| 4812 | + * @param Field[] $existingFields |
|
| 4813 | + * @param FieldDefinition[] $fieldDefinitions |
|
| 4814 | + */ |
|
| 4812 | 4815 | public function assertForTestUpdateContentRequiredField( |
| 4813 | 4816 | $initialLanguageCode, |
| 4814 | 4817 | $structFields, |
@@ -5010,6 +5013,10 @@ discard block |
||
| 5010 | 5013 | } |
| 5011 | 5014 | } |
| 5012 | 5015 | |
| 5016 | + /** |
|
| 5017 | + * @param Field[] $existingFields |
|
| 5018 | + * @param FieldDefinition[] $fieldDefinitions |
|
| 5019 | + */ |
|
| 5013 | 5020 | public function assertForTestUpdateContentThrowsContentFieldValidationException( |
| 5014 | 5021 | $initialLanguageCode, |
| 5015 | 5022 | $structFields, |
@@ -5740,7 +5747,7 @@ discard block |
||
| 5740 | 5747 | * @param array $translations |
| 5741 | 5748 | * @param bool $useAlwaysAvailable |
| 5742 | 5749 | * |
| 5743 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\API\Repository\Values\Content\Content |
|
| 5750 | + * @return APIContent |
|
| 5744 | 5751 | */ |
| 5745 | 5752 | private function mockBuildContentDomainObject(SPIContent $spiContent, array $translations = null, bool $useAlwaysAvailable = null) |
| 5746 | 5753 | { |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | /** |
| 67 | 67 | * Sets the complete list of view providers. |
| 68 | 68 | * |
| 69 | - * @param array $viewProviders |
|
| 69 | + * @param \PHPUnit\Framework\MockObject\MockObject $viewProviders |
|
| 70 | 70 | */ |
| 71 | 71 | public function setViewProviders(array $viewProviders) |
| 72 | 72 | { |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | /** |
| 87 | 87 | * @dataProvider indexingProvider |
| 88 | 88 | * |
| 89 | - * @param array|null $value |
|
| 89 | + * @param array|null $values |
|
| 90 | 90 | * @param \Psr\Log\LoggerInterface|\PHPUnit\Framework\MockObject\MockObject|null $logger |
| 91 | 91 | */ |
| 92 | 92 | public function testIndexing(array $values = null, $logger = null) |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
| 101 | - * @return \eZ\Publish\Core\Repository\Repository|\PHPUnit\Framework\MockObject\MockObject |
|
| 101 | + * @return \eZ\Publish\API\Repository\Repository |
|
| 102 | 102 | */ |
| 103 | 103 | private function getRepositoryMock() |
| 104 | 104 | { |