forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
41 lines (33 loc) · 1.65 KB
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
includes:
- vendor/phpstan/phpstan-doctrine/extension.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-webmozart-assert/extension.neon
parameters:
reportUnmatchedIgnoredErrors: false
symfony:
container_xml_path: var/cache/dev/appDevDebugProjectContainer.xml
excludes_analyse:
# Makes PHPStan crash
- '**/DependencyInjection/Configuration.php'
# Test dependencies
- '**/spec/**.php'
- '**/Bundle/*/test/app/**.php'
- '**/Bundle/*/test/src/**.php'
# These packages aren't in require-dev of the global package
- '**MongoDB**'
- '**ODM**'
ignoreErrors:
# Magic calls
- '/Call to an undefined static method Webmozart\\Assert\\Assert::all/'
- '/Call to an undefined static method Webmozart\\Assert\\Assert::nullOr/'
- '/Call to an undefined method Faker\\Generator::/'
- '/Access to an undefined property Faker\\Generator::/'
- '/Method Mockery\\MockInterface::shouldReceive\(\) invoked with 1 parameter, 0 required/'
- '/Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface/'
- '/Call to an undefined method Mockery\\ExpectationInterface|Mockery\\HigherOrderMessage::/'
# These packages aren't in require-dev of the global package
- '/Class Doctrine\\Bundle\\MongoDBBundle/'
- '/Class Doctrine\\Bundle\\PHPCRBundle/'
# Symfony 4.0 BC layer
- '/Symfony\\Component\\ExpressionLanguage\\ParserCache\\ParserCacheInterface/'
- '/Symfony\\Component\\ExpressionLanguage\\ParserCache\\ParserCacheAdapter/'