Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / vendor / drupal / console-core / src / Command / ContainerAwareCommand.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\Console\Core\Command\ContainerAwareCommand.
6  */
7
8 namespace Drupal\Console\Core\Command;
9
10 use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait;
11
12 /**
13  * Class ContainerAwareCommand
14  *
15  * @package Drupal\Console\Core\Command
16  */
17 abstract class ContainerAwareCommand extends Command
18 {
19     use ContainerAwareCommandTrait;
20 }