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 / ModelPluginBase.php.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/module/plugin-manager/src/ModelPluginBase.php.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/module/plugin-manager/src/ModelPluginBase.php.twig
deleted file mode 100644 (file)
index b29a04b..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-namespace Drupal\{{ machine_name }};
-
-use Drupal\Component\Plugin\PluginBase;
-
-/**
- * Base class for {{ name|lower }} plugins.
- */
-abstract class {{ class_prefix }}PluginBase extends PluginBase implements {{ class_prefix }}Interface {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function method1() {
-    return 'default implementation of ' . __FUNCTION__;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function method2() {
-    return 'default implementation of ' . __FUNCTION__;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function method3() {
-    return 'default implementation of ' . __FUNCTION__;
-  }
-
-}