15 lines
338 B
Twig
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 %}
|