Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-core / src / Command / ContainerAwareCommand.php
diff --git a/vendor/drupal/console-core/src/Command/ContainerAwareCommand.php b/vendor/drupal/console-core/src/Command/ContainerAwareCommand.php
new file mode 100644 (file)
index 0000000..fc51c8d
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Core\Command\ContainerAwareCommand.
+ */
+
+namespace Drupal\Console\Core\Command;
+
+use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait;
+
+/**
+ * Class ContainerAwareCommand
+ *
+ * @package Drupal\Console\Core\Command
+ */
+abstract class ContainerAwareCommand extends Command
+{
+    use ContainerAwareCommandTrait;
+}