This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console/templates/module/services.yml.twig
2018-11-23 12:29:20 +00:00

15 lines
338 B
Twig

{% if name is defined %}
{% if not file_exists %}
services:
{% endif %}
{{ name | lower }}:
class: {{ class_path }}
{% if services is defined %}
arguments: [{{ servicesAsParametersKeys(services)|join(', ') }}]
{% endif %}
{% if tags is defined %}
tags:
- { {{ tagsAsArray(tags)|join(', ') }} }
{% endif %}
{% endif %}