Skip to content

Commit

Permalink
IBX-1853: Used rebranded namespaces in comments (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nattfarinn authored Feb 2, 2022
1 parent 6342a54 commit 4cfa3b8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions src/bundle/SystemInfo/Value/IbexaSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ class IbexaSystemInfo extends ValueObject implements SystemInfo
/**
* Lowest stability found in the installation (packages / minimumStability).
*
* @var string One of {@see \EzSystems\EzSupportTools\Value\Stability::STABILITIES}.
* @var string One of {@see \Ibexa\SystemInfo\Value\Stability::STABILITIES}.
*/
public $lowestStability;

/**
* @deprecated Instead use $lowestStability.
*
* @var string One of {@see \EzSystems\EzSupportTools\Value\Stability::STABILITIES}.
* @var string One of {@see \Ibexa\SystemInfo\Value\Stability::STABILITIES}.
*/
public $stability;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class ConfigurationSymfonyKernelSystemInfoCollectorTest extends TestCase
{
/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\ConfigurationSymfonyKernelSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\ConfigurationSymfonyKernelSystemInfoCollector::collect()
*/
public function testCollect()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected function setUp(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\EzcHardwareSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\EzcHardwareSystemInfoCollector::collect()
*/
public function testCollect()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function setUp(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\EzcPhpSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\EzcPhpSystemInfoCollector::collect()
*/
public function testCollect()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function setUp(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
*/
public function testCollectWithMinimumStability(): void
{
Expand Down Expand Up @@ -90,7 +90,7 @@ public function testCollectWithMinimumStability(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
*/
public function testCollectLockFileNotFound(): void
{
Expand All @@ -105,7 +105,7 @@ public function testCollectLockFileNotFound(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
*/
public function testCollectJsonFileNotFound(): void
{
Expand All @@ -120,7 +120,7 @@ public function testCollectJsonFileNotFound(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
*/
public function testCollectLockFileCorrupted(): void
{
Expand All @@ -135,7 +135,7 @@ public function testCollectLockFileCorrupted(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\JsonComposerLockSystemInfoCollector::collect()
*/
public function testCollectJsonFileCorrupted(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function setUp(): void
}

/**
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Collector\RepositorySystemInfoCollector::collect()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Collector\RepositorySystemInfoCollector::collect()
*/
public function testCollect()
{
Expand Down
10 changes: 5 additions & 5 deletions tests/bundle/SystemInfo/Registry/IdentifierBasedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class IdentifierBasedTest extends TestCase
private $registry;

/**
* @var \PHPUnit\Framework\MockObject\MockObject[]|\EzSystems\EzSupportToolsBundle\SystemInfo\Collector\SystemInfoCollector[]
* @var \PHPUnit\Framework\MockObject\MockObject[]|\Ibexa\Bundle\SystemInfo\SystemInfo\Collector\SystemInfoCollector[]
*/
private $testItems;

Expand All @@ -35,7 +35,7 @@ protected function setUp(): void
/**
* Test adding items to the registry, and getting items from it.
*
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Registry\IdentifierBased::getItem()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Registry\IdentifierBased::getItem()
*/
public function testAddAndGetItems()
{
Expand All @@ -48,7 +48,7 @@ public function testAddAndGetItems()
/**
* Test exception when registry item is not found.
*
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Registry\IdentifierBased::getItem()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Registry\IdentifierBased::getItem()
*/
public function testGetItemNotFound()
{
Expand All @@ -59,7 +59,7 @@ public function testGetItemNotFound()
/**
* Test replacing an item in the registry.
*
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Registry\IdentifierBased::getItem()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Registry\IdentifierBased::getItem()
*/
public function testReplaceItem()
{
Expand All @@ -78,7 +78,7 @@ public function testReplaceItem()
/**
* Test getting all registered identifiers.
*
* @covers \EzSystems\EzSupportToolsBundle\SystemInfo\Registry\IdentifierBased::getIdentifiers()
* @covers \Ibexa\Bundle\SystemInfo\SystemInfo\Registry\IdentifierBased::getIdentifiers()
* @depends testAddAndGetItems
*/
public function testGetIdentifiers()
Expand Down

0 comments on commit 4cfa3b8

Please sign in to comment.