Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-1853: Used rebranded namespaces in comments #298

Merged
merged 1 commit into from
Feb 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/Form/Data/ContentTypeData.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Base data class for ContentType update form, with FieldDefinitions data and ContentTypeDraft.
*
* @property \eZ\Publish\API\Repository\Values\ContentType\ContentTypeDraft $contentTypeDraft
* @property \Ibexa\Contracts\Core\Repository\Values\ContentType\ContentTypeDraft $contentTypeDraft
*/
class ContentTypeData extends ContentTypeUpdateStruct implements NewnessCheckable
{
Expand Down Expand Up @@ -41,7 +41,7 @@ protected function getIdentifierValue(): string
}

/**
* @return iterable<string, \EzSystems\EzPlatformAdminUi\Form\Data\FieldDefinitionData>
* @return iterable<string, \Ibexa\AdminUi\Form\Data\FieldDefinitionData>
*/
public function getFlatFieldDefinitionsData(): iterable
{
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Form/Data/FieldDefinitionData.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
/**
* Base class for FieldDefinition forms, with corresponding FieldDefinition object.
*
* @property \eZ\Publish\API\Repository\Values\ContentType\FieldDefinition $fieldDefinition
* @property \EzSystems\EzPlatformAdminUi\Form\Data\ContentTypeData $contentTypeData
* @property \Ibexa\Contracts\Core\Repository\Values\ContentType\FieldDefinition $fieldDefinition
* @property \Ibexa\AdminUi\Form\Data\ContentTypeData $contentTypeData
*/
class FieldDefinitionData extends FieldDefinitionUpdateStruct
{
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Form/Type/Search/DateIntervalType.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class_alias(
if (false) {
/**
* @deprecated since 3.1, to be removed in 3.2.
* Use \EzSystems\EzPlatformAdminUi\Form\Type\Date\DateIntervalType instead
* Use \Ibexa\AdminUi\Form\Type\Date\DateIntervalType instead
*/
class DateIntervalType extends \Ibexa\AdminUi\Form\Type\Date\DateIntervalType
{
Expand Down
12 changes: 6 additions & 6 deletions tests/bundle/ParamConverter/LanguageParamConverterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected function setUp(): void
}

/**
* @covers \EzSystems\EzPlatformAdminUiBundle\ParamConverter\LanguageParamConverter::apply
* @covers \Ibexa\Bundle\AdminUi\ParamConverter\LanguageParamConverter::apply
*
* @dataProvider dataProvider
*
Expand Down Expand Up @@ -61,7 +61,7 @@ public function testApplyForLanguageId($languageId, int $languageIdToLoad)
}

/**
* @covers \EzSystems\EzPlatformAdminUiBundle\ParamConverter\LanguageParamConverter::apply
* @covers \Ibexa\Bundle\AdminUi\ParamConverter\LanguageParamConverter::apply
*/
public function testApplyForLanguageCode()
{
Expand All @@ -86,7 +86,7 @@ public function testApplyForLanguageCode()
}

/**
* @covers \EzSystems\EzPlatformAdminUiBundle\ParamConverter\LanguageParamConverter::apply
* @covers \Ibexa\Bundle\AdminUi\ParamConverter\LanguageParamConverter::apply
* @dataProvider dataProviderForApplyWithWrongAttribute
*/
public function testApplyWithWrongAttribute(array $attributes)
Expand All @@ -99,7 +99,7 @@ public function testApplyWithWrongAttribute(array $attributes)
}

/**
* @covers \EzSystems\EzPlatformAdminUiBundle\ParamConverter\LanguageParamConverter::apply
* @covers \Ibexa\Bundle\AdminUi\ParamConverter\LanguageParamConverter::apply
*/
public function testApplyWithNonExistingLanguageId()
{
Expand All @@ -125,7 +125,7 @@ public function testApplyWithNonExistingLanguageId()
}

/**
* @covers \EzSystems\EzPlatformAdminUiBundle\ParamConverter\LanguageParamConverter::apply
* @covers \Ibexa\Bundle\AdminUi\ParamConverter\LanguageParamConverter::apply
*/
public function testApplyWithNonExistingLanguageCode()
{
Expand All @@ -151,7 +151,7 @@ public function testApplyWithNonExistingLanguageCode()
}

/**
* @covers \EzSystems\EzPlatformAdminUiBundle\ParamConverter\LanguageParamConverter::supports
* @covers \Ibexa\Bundle\AdminUi\ParamConverter\LanguageParamConverter::supports
* @dataProvider dataProviderForSupport
*/
public function testSupport(string $class, bool $expected)
Expand Down
8 changes: 4 additions & 4 deletions tests/lib/Specification/ContentType/ContentTypeIsUserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class ContentTypeIsUserTest extends TestCase
{
/**
* @covers \EzSystems\EzPlatformAdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
* @covers \Ibexa\AdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
*/
public function testIsSatisfiedByInvalidArgument()
{
Expand All @@ -29,7 +29,7 @@ public function testIsSatisfiedByInvalidArgument()
}

/**
* @covers \EzSystems\EzPlatformAdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
* @covers \Ibexa\AdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
*/
public function testIsSatisfiedByCustomUserContentType()
{
Expand All @@ -43,7 +43,7 @@ public function testIsSatisfiedByCustomUserContentType()
}

/**
* @covers \EzSystems\EzPlatformAdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
* @covers \Ibexa\AdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
*/
public function testIsSatisfiedByContentTypeWithEzUserField()
{
Expand All @@ -58,7 +58,7 @@ public function testIsSatisfiedByContentTypeWithEzUserField()
}

/**
* @covers \EzSystems\EzPlatformAdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
* @covers \Ibexa\AdminUi\Specification\ContentType\ContentTypeIsUser::isSatisfiedBy
*/
public function testIsSatisfiedByReturnFalse()
{
Expand Down