v1/vendor/chi-teck/drupal-code-generator/templates/service/custom/custom.twig

35 lines
546 B
Twig

{% import '_lib/di.twig' as di %}
<?php
namespace Drupal\{{ machine_name }};
{% if services %}
{{ di.use(services) }}
{% endif %}
/**
* Service description.
*/
class {{ class }} {
{% if services %}
{{ di.properties(services) }}
/**
* Constructs {{ class|article }} object.
*
{{ di.annotation(services) }}
*/
public function __construct({{ di.signature(services) }}) {
{{ di.assignment(services) }}
}
{% endif %}
/**
* Method description.
*/
public function doSomething() {
// @DCG place your code here.
}
}