From 7b178b1628cfd90976661570c02810c1e68897f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Parafi=C5=84ski?= Date: Thu, 27 Jun 2024 12:32:41 +0200 Subject: [PATCH] IBX-8224: Dropped BackwardCompatibleCommand (#69) --- src/bundle/Command/GeneratePlatformSchemaCommand.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/bundle/Command/GeneratePlatformSchemaCommand.php b/src/bundle/Command/GeneratePlatformSchemaCommand.php index d308cba..8e786e7 100644 --- a/src/bundle/Command/GeneratePlatformSchemaCommand.php +++ b/src/bundle/Command/GeneratePlatformSchemaCommand.php @@ -7,7 +7,6 @@ namespace Ibexa\Bundle\GraphQL\Command; -use Ibexa\Bundle\Core\Command\BackwardCompatibleCommand; use Ibexa\Contracts\Core\Repository\Repository; use Ibexa\GraphQL\Schema\Generator; use Symfony\Component\Console\Command\Command; @@ -18,7 +17,7 @@ use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Yaml\Yaml; -class GeneratePlatformSchemaCommand extends Command implements BackwardCompatibleCommand +class GeneratePlatformSchemaCommand extends Command { /** * @var \Ibexa\GraphQL\Schema\Generator @@ -98,12 +97,4 @@ private function compileTypes(OutputInterface $output) $command = $this->getApplication()->find('graphql:compile'); $command->run(new StringInput('graphql:compile'), $output); } - - /** - * @return string[] - */ - public function getDeprecatedAliases(): array - { - return ['ezplatform:graphql:generate-schema']; - } }