build-configs/templates/php/phpstan.neon.twig

17 lines
307 B
Twig

# {{ managedText | raw }}
parameters:
level: {{ php.phpstan.level }}
excludePaths:
- *Test.php
- *TestBase.php
paths:
{% for path in php.phpstan.paths | default(["src"]) -%}
- {{ path }}
{%- endfor %}
{% if php.phpstan.baseline %}
includes:
- phpstan-baseline.neon
{% endif %}