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

17 lines
307 B
Twig
Raw Normal View History

# {{ managedText | raw }}
2023-01-19 19:47:15 +00:00
parameters:
level: {{ php.phpstan.level }}
2023-04-21 22:22:17 +00:00
excludePaths:
- *Test.php
- *TestBase.php
2023-01-19 19:47:15 +00:00
paths:
{% for path in php.phpstan.paths | default(["src"]) -%}
- {{ path }}
{%- endfor %}
2023-04-23 19:15:08 +00:00
{% if php.phpstan.baseline %}
includes:
- phpstan-baseline.neon
{% endif %}