fc51c8d5dc6cf5354996ba39b075bc9d13d4dd8b
[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 }