Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-core / src / Generator / GeneratorInterface.php
diff --git a/vendor/drupal/console-core/src/Generator/GeneratorInterface.php b/vendor/drupal/console-core/src/Generator/GeneratorInterface.php
new file mode 100644 (file)
index 0000000..907f356
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Core\Generator\Generator.
+ */
+
+namespace Drupal\Console\Core\Generator;
+
+/**
+ * Class Generator
+ *
+ * @package Drupal\Console\Core\GeneratorInterface
+ */
+interface GeneratorInterface
+{
+
+    /**
+     * @param array $parameters
+     * @return void
+     */
+    public function generate(array $parameters);
+}