Skip to content

Commit 7b178b1

Browse files
authored
IBX-8224: Dropped BackwardCompatibleCommand (#69)
1 parent 514f0e5 commit 7b178b1

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/bundle/Command/GeneratePlatformSchemaCommand.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace Ibexa\Bundle\GraphQL\Command;
99

10-
use Ibexa\Bundle\Core\Command\BackwardCompatibleCommand;
1110
use Ibexa\Contracts\Core\Repository\Repository;
1211
use Ibexa\GraphQL\Schema\Generator;
1312
use Symfony\Component\Console\Command\Command;
@@ -18,7 +17,7 @@
1817
use Symfony\Component\Filesystem\Filesystem;
1918
use Symfony\Component\Yaml\Yaml;
2019

21-
class GeneratePlatformSchemaCommand extends Command implements BackwardCompatibleCommand
20+
class GeneratePlatformSchemaCommand extends Command
2221
{
2322
/**
2423
* @var \Ibexa\GraphQL\Schema\Generator
@@ -98,12 +97,4 @@ private function compileTypes(OutputInterface $output)
9897
$command = $this->getApplication()->find('graphql:compile');
9998
$command->run(new StringInput('graphql:compile'), $output);
10099
}
101-
102-
/**
103-
* @return string[]
104-
*/
105-
public function getDeprecatedAliases(): array
106-
{
107-
return ['ezplatform:graphql:generate-schema'];
108-
}
109100
}

0 commit comments

Comments
 (0)