Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / module / plugin-manager / src / ModelInterface.php.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/module/plugin-manager/src/ModelInterface.php.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/module/plugin-manager/src/ModelInterface.php.twig
new file mode 100644 (file)
index 0000000..6c6b777
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+
+namespace Drupal\{{ machine_name }};
+
+/**
+ * Interface definition for {{ name|lower }} plugins.
+ */
+interface {{ class_prefix }}Interface {
+
+  /**
+   * Method 1.
+   */
+  public function method1();
+
+  /**
+   * Method 2.
+   */
+  public function method2();
+
+  /**
+   * Method 3.
+   */
+  public function method3();
+
+}