Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console / templates / module / src / plugin-type-annotation-interface.php.twig
1 {% extends "base/class.php.twig" %}
2
3 {% block file_path %}
4 \Drupal\{{ module }}\Plugin\{{ class_name }}Interface.
5 {% endblock %}
6
7 {% block namespace_class %}
8 namespace Drupal\{{ module }}\Plugin;
9 {% endblock %}
10
11 {% block use_class %}
12 use Drupal\Component\Plugin\PluginInspectionInterface;
13 {% endblock %}
14
15 {% block class_declaration %}
16 /**
17  * Defines an interface for {{ label }} plugins.
18  */
19 interface {{ class_name }}Interface extends PluginInspectionInterface {% endblock %}
20 {% block class_methods %}
21
22   // Add get/set methods for your plugin type here.
23 {% endblock %}