Updated Drupal to 8.6. This goes with the following updates because it's possible...
[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
deleted file mode 100644 (file)
index 6c6b777..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?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();
-
-}