More updates to stop using dev or alpha or beta versions.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / module / plugin-manager / src / ModelInterface.php.twig
1 <?php
2
3 namespace Drupal\{{ machine_name }};
4
5 /**
6  * Interface definition for {{ name|lower }} plugins.
7  */
8 interface {{ class_prefix }}Interface {
9
10   /**
11    * Method 1.
12    */
13   public function method1();
14
15   /**
16    * Method 2.
17    */
18   public function method2();
19
20   /**
21    * Method 3.
22    */
23   public function method3();
24
25 }