Skip to content

Commit

Permalink
IBX-1853: Used rebranded namespaces in comments (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nattfarinn authored Feb 2, 2022
1 parent b6521aa commit 0397185
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/lib/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public function indexContent(Content $content)
*
* @todo: This method & {@see commit()} is needed for being able to bulk index content, and then afterwards commit.
* However it is not added to an official SPI interface yet as we anticipate adding a bulkIndexDocument
* using eZ\Publish\SPI\Search\Document instead of bulkIndexContent based on Content objects. However
* using Ibexa\Contracts\Core\Search\Document instead of bulkIndexContent based on Content objects. However
* that won't be added until we have several stable or close to stable advance search engines to make
* sure we match the features of these.
* See also {@see Solr\Content\Search\Gateway\Native::bulkIndexContent} for further Solr specific info.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private function getSortClauses(array $sortClauses)
* Converts an array of facet builder objects to a Solr query parameters representation.
*
* This method uses spl_object_hash() to get id of each and every facet builder, as this
* is expected by {@link \EzSystems\EzPlatformSolrSearchEngine\ResultExtractor}.
* is expected by {@link \Ibexa\Solr\ResultExtractor}.
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Query\FacetBuilder[] $facetBuilders
*
Expand Down
12 changes: 6 additions & 6 deletions tests/lib/CoreFilter/CoreFilterRegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class CoreFilterRegistryTest extends TestCase
{
/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\CoreFilter\CoreFilterRegistry::addCoreFilter
* @covers \Ibexa\Solr\CoreFilter\CoreFilterRegistry::addCoreFilter
*/
public function testAddCoreFilter(): void
{
Expand All @@ -25,7 +25,7 @@ public function testAddCoreFilter(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\CoreFilter\CoreFilterRegistry::getCoreFilter
* @covers \Ibexa\Solr\CoreFilter\CoreFilterRegistry::getCoreFilter
*/
public function testGetCoreFilter(): void
{
Expand All @@ -35,7 +35,7 @@ public function testGetCoreFilter(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::getGateway
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::getGateway
*/
public function testGetCoreFilterForMissingConnection(): void
{
Expand All @@ -46,7 +46,7 @@ public function testGetCoreFilterForMissingConnection(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\CoreFilter\CoreFilterRegistry::hasCoreFilter
* @covers \Ibexa\Solr\CoreFilter\CoreFilterRegistry::hasCoreFilter
*/
public function testHasCoreFilter(): void
{
Expand All @@ -56,7 +56,7 @@ public function testHasCoreFilter(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\CoreFilter\CoreFilterRegistry::setCoreFilters
* @covers \Ibexa\Solr\CoreFilter\CoreFilterRegistry::setCoreFilters
*/
public function testSetCoreFilters(): void
{
Expand All @@ -69,7 +69,7 @@ public function testSetCoreFilters(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\CoreFilter\CoreFilterRegistry::getCoreFilters
* @covers \Ibexa\Solr\CoreFilter\CoreFilterRegistry::getCoreFilters
*/
public function testGetCoreFilters(): void
{
Expand Down
12 changes: 6 additions & 6 deletions tests/lib/Gateway/GatewayRegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class GatewayRegistryTest extends TestCase
{
/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::addGateway
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::addGateway
*/
public function testAddGateway(): void
{
Expand All @@ -25,7 +25,7 @@ public function testAddGateway(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::getGateway
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::getGateway
*/
public function testGetGateway(): void
{
Expand All @@ -36,7 +36,7 @@ public function testGetGateway(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::getGateway
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::getGateway
*/
public function testGetGatewayForMissingConnection(): void
{
Expand All @@ -47,7 +47,7 @@ public function testGetGatewayForMissingConnection(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::hasGateway
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::hasGateway
*/
public function testHasGateway(): void
{
Expand All @@ -58,7 +58,7 @@ public function testHasGateway(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::setGateways
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::setGateways
*/
public function testSetGateways(): void
{
Expand All @@ -71,7 +71,7 @@ public function testSetGateways(): void
}

/**
* @covers \EzSystems\EzPlatformSolrSearchEngine\Gateway\GatewayRegistry::getGateways
* @covers \Ibexa\Solr\Gateway\GatewayRegistry::getGateways
*/
public function testGetGateways(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Test case for FullText criterion visitor.
*
* @covers \EzSystems\EzPlatformSolrSearchEngine\Query\Content\CriterionVisitor\FullText
* @covers \Ibexa\Solr\Query\Content\CriterionVisitor\FullText
*/
class FullTextTest extends TestCase
{
Expand Down

0 comments on commit 0397185

Please sign in to comment.