File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
- # services:
2
- # cache_context_debug:
3
- # class: Drupal\Console\Command\Cache\ContextDebugCommand
4
- # tags:
5
- # - { name: console.command }
6
- # cache_rebuild:
7
- # class: Drupal\Console\Command\Cache\RebuildCommand
8
- # tags:
9
- # - { name: console.command }
1
+ services :
2
+ cache_context_debug :
3
+ class : Drupal\Console\Command\Cache\ContextDebugCommand
4
+ tags :
5
+ - { name: console.command }
6
+ cache_rebuild :
7
+ class : Drupal\Console\Command\Cache\RebuildCommand
8
+ tags :
9
+ - { name: console.command }
Original file line number Diff line number Diff line change 10
10
use Symfony \Component \Console \Input \InputInterface ;
11
11
use Symfony \Component \Console \Output \OutputInterface ;
12
12
use Symfony \Component \Console \Command \Command ;
13
- use Drupal \Console \Command \Shared \ContainerAwareCommandTrait ;
13
+ use Drupal \Console \Command \Shared \CommandTrait ;
14
14
use Drupal \Console \Style \DrupalStyle ;
15
15
16
16
/**
20
20
*/
21
21
class ContextDebugCommand extends Command
22
22
{
23
- use ContainerAwareCommandTrait ;
23
+ use CommandTrait ;
24
24
25
25
/**
26
26
* {@inheritdoc}
Original file line number Diff line number Diff line change 11
11
use Symfony \Component \Console \Input \InputInterface ;
12
12
use Symfony \Component \Console \Output \OutputInterface ;
13
13
use Symfony \Component \Console \Command \Command ;
14
- use Drupal \Console \Command \Shared \ContainerAwareCommandTrait ;
14
+ use Drupal \Console \Command \Shared \CommandTrait ;
15
15
use Drupal \Console \Style \DrupalStyle ;
16
16
17
17
/**
20
20
*/
21
21
class RebuildCommand extends Command
22
22
{
23
- use ContainerAwareCommandTrait ;
23
+ use CommandTrait ;
24
24
25
25
/**
26
26
* {@inheritdoc}
You can’t perform that action at this time.
0 commit comments