Version 1
[yaffs-website] / vendor / drupal / console / src / Annotations / DrupalCommand.php
diff --git a/vendor/drupal/console/src/Annotations/DrupalCommand.php b/vendor/drupal/console/src/Annotations/DrupalCommand.php
new file mode 100644 (file)
index 0000000..5163c53
--- /dev/null
@@ -0,0 +1,32 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\Console\Annotations\DrupalCommand.
+ */
+
+namespace Drupal\Console\Annotations;
+
+use Doctrine\Common\Annotations\Annotation;
+
+/**
+ * @Annotation
+ * @Target("CLASS")
+ */
+
+class DrupalCommand
+{
+    /**
+     * @var string
+     */
+    public $extension;
+
+    /**
+     * @var string
+     */
+    public $extensionType;
+
+    /**
+     * @var array
+     */
+    public $dependencies;
+}