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 / Plugin / Model / Example.php.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/module/plugin-manager/src/Plugin/Model/Example.php.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/module/plugin-manager/src/Plugin/Model/Example.php.twig
deleted file mode 100644 (file)
index 50ef3b9..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-namespace Drupal\{{ machine_name }}\Plugin\{{ class_prefix }};
-
-use Drupal\{{ machine_name }}\{{ class_prefix }}PluginBase;
-
-/**
- * Example plugin implementation of the {{ machine_name }}.
- *
- * @{{ class_prefix }}(
- *   id = "example",
- *   label = @Translation("Example"),
- *   description = @Translation("Example description.")
- * )
- */
-class Example extends {{ class_prefix }}PluginBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function method1() {
-    return __CLASS__ . ' implementation of ' . __FUNCTION__;
-  }
-
-}