Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 1 addition & 4 deletions src/Command/Cache/RebuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Console\Command\Command;
use Drupal\Console\Core\Command\Shared\CommandTrait;
use Drupal\Console\Core\Command\Command;
use Drupal\Console\Utils\DrupalApi;
use Drupal\Console\Utils\Site;
use Drupal\Console\Core\Style\DrupalStyle;
Expand All @@ -24,8 +23,6 @@
*/
class RebuildCommand extends Command
{
use CommandTrait;

/**
* @var DrupalApi
*/
Expand Down
7 changes: 2 additions & 5 deletions src/Command/Debug/ContainerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,17 @@
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Command\Command;
use Drupal\Console\Core\Command\ContainerAwareCommand;
use Symfony\Component\Yaml\Yaml;
use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait;
use Drupal\Console\Core\Style\DrupalStyle;

/**
* Class ContainerCommand
*
* @package Drupal\Console\Command\Debug
*/
class ContainerCommand extends Command
class ContainerCommand extends ContainerAwareCommand
{
use ContainerAwareCommandTrait;

/**
* {@inheritdoc}
*/
Expand Down