Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions src/bundle/Command/GeneratePlatformSchemaCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
Expand Down Expand Up @@ -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'];
}
}