mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-22 18:27:31 +00:00
19 lines
351 B
Twig
19 lines
351 B
Twig
# {{ managedText | raw }}
|
|
|
|
parameters:
|
|
level: {{ php.phpstan.level }}
|
|
{% if not experimental.runStaticAnalysisOnTests %}
|
|
excludePaths:
|
|
- *Test.php
|
|
- *TestBase.php
|
|
{% endif %}
|
|
paths:
|
|
{% for path in php.phpstan.paths -%}
|
|
- {{ path }}
|
|
{%- endfor %}
|
|
|
|
{% if php.phpstan.baseline %}
|
|
includes:
|
|
- phpstan-baseline.neon
|
|
{% endif %}
|