-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpstan.neon
19 lines (16 loc) · 921 Bytes
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
parameters:
level: max
reportUnmatchedIgnoredErrors: false
checkMissingIterableValueType: false
paths:
- src
- tests/Behat
excludePaths:
# Makes PHPStan crash
- 'src/DependencyInjection/Configuration.php'
# Test dependencies
- 'tests/Application/app/**.php'
- 'tests/Application/src/**.php'
ignoreErrors:
- '/Parameter #1 \$configuration of method Symfony\\Component\\DependencyInjection\\Extension\\Extension::processConfiguration\(\) expects Symfony\\Component\\Config\\Definition\\ConfigurationInterface, Symfony\\Component\\Config\\Definition\\ConfigurationInterface\|null given\./'
- '#Method [\w\\\(\)\:]+ has parameter \$[\w]+ with generic interface [\w\\]+RepositoryInterface but does not specify its types: T#' # Sylius 1.13 defines generic types for repositories, but 1.12 does not; so it throws an error anyway