18 lines
		
	
	
		
			243 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			243 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
{% verbatim %}<?php
 | 
						|
 | 
						|
namespace Drupal\{{ machine_name }};
 | 
						|
 | 
						|
/**
 | 
						|
 * Some custom service of the {{ name }} module.
 | 
						|
 */
 | 
						|
class {{ class }} {
 | 
						|
 | 
						|
  /**
 | 
						|
   * Method description.
 | 
						|
   */
 | 
						|
  public function meow() {
 | 
						|
    echo 'Meow!';
 | 
						|
  }
 | 
						|
 | 
						|
}{% endverbatim %}
 |