Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console / templates / module / services.yml.twig
1 {% if name is defined %}
2 {% if not file_exists %}
3 services:
4 {% endif %}
5   {{ name | lower }}:
6     class: {{ class_path }}
7 {% if services is defined %}
8     arguments: [{{ servicesAsParametersKeys(services)|join(', ') }}]
9 {% endif %}
10 {% if tags is defined %}
11     tags:
12       - { {{ tagsAsArray(tags)|join(', ') }} }
13 {% endif %}
14 {% endif %}
15