0c94e4b11db3b9f8bb84ca5b3e9daf135f264fba
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / other / dcg-command-template.twig
1 {% verbatim %}<?php
2
3 namespace Drupal\{{ machine_name }};
4
5 /**
6  * Some custom service of the {{ name }} module.
7  */
8 class {{ class }} {
9
10   /**
11    * Method description.
12    */
13   public function meow() {
14     echo 'Meow!';
15   }
16
17 }{% endverbatim %}