Skip to content

Commit

Permalink
IBX-8139: Dropped class_alias BC layer statements from all classes (#52)
Browse files Browse the repository at this point in the history
For more details see https://issues.ibexa.co/browse/IBX-8139 and #52

Key changes:

* Dropped class_alias BC layer from production code

* Dropped class_alias BC layer from test code

* [Composer] Dropped legacy namespaces from autoload section
  • Loading branch information
alongosz authored Jun 5, 2024
1 parent 91efcb3 commit 55a7349
Show file tree
Hide file tree
Showing 71 changed files with 1 addition and 143 deletions.
4 changes: 1 addition & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@
"psr-4": {
"Ibexa\\SystemInfo\\": "src/lib/",
"Ibexa\\Bundle\\SystemInfo\\": "src/bundle/",
"Ibexa\\Contracts\\SystemInfo\\": "src/contracts/",
"EzSystems\\EzSupportToolsBundle\\": "src/bundle/",
"EzSystems\\EzSupportTools\\": "src/lib/"
"Ibexa\\Contracts\\SystemInfo\\": "src/contracts/"
}
},
"autoload-dev": {
Expand Down
2 changes: 0 additions & 2 deletions src/bundle/Command/SystemInfoDumpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,3 @@ public function getDeprecatedAliases(): array
return ['ez-support-tools:dump-info'];
}
}

class_alias(SystemInfoDumpCommand::class, 'EzSystems\EzSupportToolsBundle\Command\SystemInfoDumpCommand');
2 changes: 0 additions & 2 deletions src/bundle/Controller/SystemInfoController.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,3 @@ public function phpinfoAction(): Response
return $response;
}
}

class_alias(SystemInfoController::class, 'EzSystems\EzSupportToolsBundle\Controller\SystemInfoController');
2 changes: 0 additions & 2 deletions src/bundle/DependencyInjection/Compiler/OutputFormatPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,3 @@ public function process(ContainerBuilder $container)
$outputFormatRegistryDef->setArguments([$outputFormatters]);
}
}

class_alias(OutputFormatPass::class, 'EzSystems\EzSupportToolsBundle\DependencyInjection\Compiler\OutputFormatPass');
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,3 @@ public function process(ContainerBuilder $container)
$infoCollectorRegistryDef->setArguments([$infoCollectors]);
}
}

class_alias(SystemInfoCollectorPass::class, 'EzSystems\EzSupportToolsBundle\DependencyInjection\Compiler\SystemInfoCollectorPass');
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ public function process(ContainerBuilder $container)
$tabRegistry->addMethodCall('addTabGroup', [$tabGroupDefinition]);
}
}

class_alias(SystemInfoTabGroupPass::class, 'EzSystems\EzSupportToolsBundle\DependencyInjection\Compiler\SystemInfoTabGroupPass');
2 changes: 0 additions & 2 deletions src/bundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,3 @@ public function getConfigTreeBuilder(): TreeBuilder
return $treeBuilder;
}
}

class_alias(Configuration::class, 'EzSystems\EzSupportToolsBundle\DependencyInjection\Configuration');
2 changes: 0 additions & 2 deletions src/bundle/DependencyInjection/IbexaSystemInfoExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,3 @@ public static function getNameByPackages(string $vendor = null): string
return IbexaSystemInfo::PRODUCT_NAME_VARIANTS[self::getEditionByPackages()];
}
}

class_alias(IbexaSystemInfoExtension::class, 'EzSystems\EzSupportToolsBundle\DependencyInjection\EzSystemsEzSupportToolsExtension');
2 changes: 0 additions & 2 deletions src/bundle/EventSubscriber/AddXPoweredByHeader.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,3 @@ public function promotePlatform(ResponseEvent $event): void
}
}
}

class_alias(AddXPoweredByHeader::class, 'EzSystems\EzSupportToolsBundle\EventSubscriber\AddXPoweredByHeader');
2 changes: 0 additions & 2 deletions src/bundle/IbexaSystemInfoBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,3 @@ public function getContainerExtension(): ExtensionInterface
return new IbexaSystemInfoExtension();
}
}

class_alias(IbexaSystemInfoBundle::class, 'EzSystems\EzSupportToolsBundle\EzSystemsEzSupportToolsBundle');
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,3 @@ public function collect(): SymfonyKernelSystemInfo
]);
}
}

class_alias(ConfigurationSymfonyKernelSystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\ConfigurationSymfonyKernelSystemInfoCollector');
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,3 @@ public function collect(): HardwareSystemInfo
]);
}
}

class_alias(EzcHardwareSystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\EzcHardwareSystemInfoCollector');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Collector/EzcPhpSystemInfoCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,3 @@ public function collect(): PhpSystemInfo
return new PhpSystemInfo($properties);
}
}

class_alias(EzcPhpSystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\EzcPhpSystemInfoCollector');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,5 +286,3 @@ private static function hasAnyPackage(
return false;
}
}

class_alias(IbexaSystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\IbexaSystemInfoCollector');
Original file line number Diff line number Diff line change
Expand Up @@ -195,5 +195,3 @@ private function getMinimumStability(array $lockData): ?string
return $lockData['minimum-stability'] ?? null;
}
}

class_alias(JsonComposerLockSystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\JsonComposerLockSystemInfoCollector');
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,3 @@ private function populateRepositoryMetricsData(): RepositoryMetrics
]);
}
}

class_alias(RepositorySystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\RepositorySystemInfoCollector');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Collector/SystemInfoCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,3 @@ interface SystemInfoCollector
*/
public function collect();
}

class_alias(SystemInfoCollector::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Collector\SystemInfoCollector');
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,3 @@ public function __construct(string $path, $code = 0, Exception $previous = null)
parent::__construct($message, $code, $previous);
}
}

class_alias(ComposerFileValidationException::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Exception\ComposerFileValidationException');
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ public function __construct(string $path, Exception $previous = null)
parent::__construct('Composer.json file', $path, $previous);
}
}

class_alias(ComposerJsonFileNotFoundException::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Exception\ComposerJsonFileNotFoundException');
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ public function __construct($path, Exception $previous = null)
parent::__construct('composer.lock file', $path, $previous);
}
}

class_alias(ComposerLockFileNotFoundException::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Exception\ComposerLockFileNotFoundException');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Exception/MetricsNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ public function __construct(string $identifier, Exception $previous = null)
parent::__construct('Metrics', $identifier, $previous);
}
}

class_alias(MetricsNotFoundException::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Exception\MetricsNotFoundException');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Exception/SystemInfoException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,3 @@
interface SystemInfoException
{
}

class_alias(SystemInfoException::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Exception\SystemInfoException');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/EzcSystemInfoWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,3 @@ public function __construct()
}
}
}

class_alias(EzcSystemInfoWrapper::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\EzcSystemInfoWrapper');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/OutputFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,3 @@ interface OutputFormat
*/
public function format(array $collectedInfo);
}

class_alias(OutputFormat::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\OutputFormat');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/OutputFormat/JsonOutputFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,3 @@ public function format(array $collectedInfo)
return json_encode($collectedInfo, JSON_PRETTY_PRINT);
}
}

class_alias(JsonOutputFormat::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\OutputFormat\JsonOutputFormat');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/OutputFormatRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,3 @@ public function getIdentifiers()
return array_keys($this->registry);
}
}

class_alias(OutputFormatRegistry::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\OutputFormatRegistry');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Registry/IdentifierBased.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,3 @@ public function getIdentifiers()
return array_keys($this->registry);
}
}

class_alias(IdentifierBased::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Registry\IdentifierBased');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/SystemInfoCollectorRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ public function getItem($identifier);
*/
public function getIdentifiers();
}

class_alias(SystemInfoCollectorRegistry::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\SystemInfoCollectorRegistry');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/ComposerPackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,3 @@ class ComposerPackage extends ValueObject implements SystemInfo
*/
public $reference;
}

class_alias(ComposerPackage::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\ComposerPackage');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/ComposerSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,3 @@ class ComposerSystemInfo extends ValueObject implements SystemInfo
*/
public $repositoryUrls = [];
}

class_alias(ComposerSystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\ComposerSystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/HardwareSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,3 @@ class HardwareSystemInfo extends ValueObject implements SystemInfo
*/
public $memorySize;
}

class_alias(HardwareSystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\HardwareSystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/IbexaSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,3 @@ class IbexaSystemInfo extends ValueObject implements SystemInfo
*/
public $composerInfo;
}

class_alias(IbexaSystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\IbexaSystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/InvalidSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,3 @@ final class InvalidSystemInfo extends ValueObject implements SystemInfo
*/
public $errorMessage;
}

class_alias(InvalidSystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\InvalidSystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/PhpSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,3 @@ class PhpSystemInfo extends ValueObject implements SystemInfo
*/
public $acceleratorVersion;
}

class_alias(PhpSystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\PhpSystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/RepositoryMetrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,3 @@ class RepositoryMetrics extends ValueObject implements SystemInfo
/** @var int */
public $contentTypesCount;
}

class_alias(RepositoryMetrics::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\RepositoryMetrics');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/RepositorySystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,3 @@ class RepositorySystemInfo extends ValueObject implements SystemInfo
*/
public $repositoryMetrics;
}

class_alias(RepositorySystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\RepositorySystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/SymfonyKernelSystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,3 @@ class SymfonyKernelSystemInfo extends ValueObject implements SystemInfo
*/
public $charset;
}

class_alias(SymfonyKernelSystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\SymfonyKernelSystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/SystemInfo/Value/SystemInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,3 @@
interface SystemInfo
{
}

class_alias(SystemInfo::class, 'EzSystems\EzSupportToolsBundle\SystemInfo\Value\SystemInfo');
2 changes: 0 additions & 2 deletions src/bundle/View/Matcher/SystemInfo/Identifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,3 @@ private function normalizeName(string $name): string
return mb_strtolower($normalized);
}
}

class_alias(Identifier::class, 'EzSystems\EzSupportToolsBundle\View\Matcher\SystemInfo\Identifier');
2 changes: 0 additions & 2 deletions src/bundle/View/SystemInfoView.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,3 @@ protected function getInternalParameters()
return ['info' => $this->info];
}
}

class_alias(SystemInfoView::class, 'EzSystems\EzSupportToolsBundle\View\SystemInfoView');
2 changes: 0 additions & 2 deletions src/bundle/View/SystemInfoViewBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,3 @@ private function getCollector($identifier)
return $this->registry->getItem($identifier);
}
}

class_alias(SystemInfoViewBuilder::class, 'EzSystems\EzSupportToolsBundle\View\SystemInfoViewBuilder');
2 changes: 0 additions & 2 deletions src/lib/Component/Dashboard/EzInfoTwigComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,3 @@ private function replaceUrlPlaceholders(): array
return $urls;
}
}

class_alias(EzInfoTwigComponent::class, 'EzSystems\EzSupportTools\Component\Dashboard\EzInfoTwigComponent');
2 changes: 0 additions & 2 deletions src/lib/EventListener/ConfigureMainMenuListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,3 @@ public static function getTranslationMessages(): array
];
}
}

class_alias(ConfigureMainMenuListener::class, 'EzSystems\EzSupportTools\EventListener\ConfigureMainMenuListener');
2 changes: 0 additions & 2 deletions src/lib/EventListener/SystemInfoTabGroupListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,3 @@ public function onTabGroupPreRender(TabGroupEvent $event)
}
}
}

class_alias(SystemInfoTabGroupListener::class, 'EzSystems\EzSupportTools\EventListener\SystemInfoTabGroupListener');
2 changes: 0 additions & 2 deletions src/lib/Storage/AggregateMetricsProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,3 @@ public function provideMetrics(string $identifier): Metrics
}
}
}

class_alias(AggregateMetricsProvider::class, 'EzSystems\EzSupportTools\Storage\AggregateMetricsProvider');
2 changes: 0 additions & 2 deletions src/lib/Storage/Metrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ interface Metrics
{
public function getValue(): int;
}

class_alias(Metrics::class, 'EzSystems\EzSupportTools\Storage\Metrics');
2 changes: 0 additions & 2 deletions src/lib/Storage/Metrics/ContentTypesCountMetrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ public function getValue(): int
return (int) $queryBuilder->execute()->fetchColumn();
}
}

class_alias(ContentTypesCountMetrics::class, 'EzSystems\EzSupportTools\Storage\Metrics\ContentTypesCountMetrics');
2 changes: 0 additions & 2 deletions src/lib/Storage/Metrics/DraftsCountMetrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,3 @@ public function getValue(): int
return (int) $queryBuilder->execute()->fetchColumn();
}
}

class_alias(DraftsCountMetrics::class, 'EzSystems\EzSupportTools\Storage\Metrics\DraftsCountMetrics');
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ public function getValue(): int
return (int) $queryBuilder->execute()->fetchColumn();
}
}

class_alias(PublishedContentObjectsCountMetrics::class, 'EzSystems\EzSupportTools\Storage\Metrics\PublishedContentObjectsCountMetrics');
2 changes: 0 additions & 2 deletions src/lib/Storage/Metrics/RepositoryConnectionAwareMetrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,3 @@ protected function getCountExpression(string $columnName): string
return $this->connection->getDatabasePlatform()->getCountExpression($columnName);
}
}

class_alias(RepositoryConnectionAwareMetrics::class, 'EzSystems\EzSupportTools\Storage\Metrics\RepositoryConnectionAwareMetrics');
2 changes: 0 additions & 2 deletions src/lib/Storage/Metrics/UsersCountMetrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,3 @@ public function getValue(): int
return (int) $queryBuilder->execute()->fetchColumn();
}
}

class_alias(UsersCountMetrics::class, 'EzSystems\EzSupportTools\Storage\Metrics\UsersCountMetrics');
2 changes: 0 additions & 2 deletions src/lib/Storage/Metrics/VersionsCountMetrics.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,3 @@ public function getValue(): int
return (int) $queryBuilder->execute()->fetchColumn();
}
}

class_alias(VersionsCountMetrics::class, 'EzSystems\EzSupportTools\Storage\Metrics\VersionsCountMetrics');
2 changes: 0 additions & 2 deletions src/lib/Storage/MetricsProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ interface MetricsProvider
{
public function provideMetrics(string $identifier): Metrics;
}

class_alias(MetricsProvider::class, 'EzSystems\EzSupportTools\Storage\MetricsProvider');
2 changes: 0 additions & 2 deletions src/lib/Tab/SystemInfo/SystemInfoTab.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,3 @@ public function getName(): string
return /** @Ignore */$this->translator->trans(sprintf('tab.name.%s', $this->tabIdentifier), [], 'ibexa_systeminfo');
}
}

class_alias(SystemInfoTab::class, 'EzSystems\EzSupportTools\Tab\SystemInfo\SystemInfoTab');
2 changes: 0 additions & 2 deletions src/lib/Tab/SystemInfo/TabFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,3 @@ public function createTab(string $collectorIdentifier, ?string $tabIdentifier =
);
}
}

class_alias(TabFactory::class, 'EzSystems\EzSupportTools\Tab\SystemInfo\TabFactory');
2 changes: 0 additions & 2 deletions src/lib/Value/Stability.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,3 @@ final class Stability
20 => 'dev',
];
}

class_alias(Stability::class, 'EzSystems\EzSupportTools\Value\Stability');
2 changes: 0 additions & 2 deletions src/lib/VersionStability/ComposerVersionStabilityChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,3 @@ private function getStabilityFromVersionString(string $version): ?string
: null;
}
}

class_alias(ComposerVersionStabilityChecker::class, 'EzSystems\EzSupportTools\VersionStability\ComposerVersionStabilityChecker');
2 changes: 0 additions & 2 deletions src/lib/VersionStability/VersionStabilityChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ public function getStability(string $version): string;

public function isStableVersion(string $version): bool;
}

class_alias(VersionStabilityChecker::class, 'EzSystems\EzSupportTools\VersionStability\VersionStabilityChecker');
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,3 @@ public function testProcess()
);
}
}

class_alias(SystemInfoTabGroupPassTest::class, 'EzSystems\EzSupportToolsBundle\Tests\DependencyInjection\Compiler\SystemInfoTabGroupPassTest');
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,3 @@ public function testLoadServiceServices(): void
}
}
}

class_alias(IbexaSystemInfoExtensionTest::class, 'EzSystems\EzSupportToolsBundle\Tests\DependencyInjection\EzSystemsEzSupportToolsExtensionTest');
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,3 @@ public function testCollect()
self::assertEquals($expected, $value);
}
}

class_alias(ConfigurationSymfonyKernelSystemInfoCollectorTest::class, 'EzSystems\EzSupportToolsBundle\Tests\SystemInfo\Collector\ConfigurationSymfonyKernelSystemInfoCollectorTest');
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,3 @@ public function testCollect()
);
}
}

class_alias(EzcHardwareSystemInfoCollectorTest::class, 'EzSystems\EzSupportToolsBundle\Tests\SystemInfo\Collector\EzcHardwareSystemInfoCollectorTest');
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,3 @@ public function testCollect()
);
}
}

class_alias(EzcPhpSystemInfoCollectorTest::class, 'EzSystems\EzSupportToolsBundle\Tests\SystemInfo\Collector\EzcPhpSystemInfoCollectorTest');
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,3 @@ public function testCollect(): void
self::assertSame(Ibexa::VERSION, $systemInfo->release);
}
}

class_alias(IbexaSystemInfoCollectorTest::class, 'EzSystems\EzSupportToolsBundle\Tests\SystemInfo\Collector\IbexaSystemInfoCollectorTest');
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,3 @@ public function testCollectJsonFileCorrupted(): void
$composerCollectorCorrupted->collect();
}
}

class_alias(JsonComposerLockSystemInfoCollectorTest::class, 'EzSystems\EzSupportToolsBundle\Tests\SystemInfo\Collector\JsonComposerLockSystemInfoCollectorTest');
Loading

0 comments on commit 55a7349

Please sign in to comment.