-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
38 lines (30 loc) · 900 Bytes
/
phpstan.neon
File metadata and controls
38 lines (30 loc) · 900 Bytes
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
parameters:
level: max
paths:
- src
excludePaths:
- tests/Application/*
- src/DependencyInjection/Configuration.php
bootstrapFiles:
- vendor/autoload.php
# Symfony Configuration
symfony:
consoleApplicationLoader: tests/PHPStan/console_application.php
# Doctrine Configuration
doctrine:
repositoryClass: Doctrine\ORM\EntityRepository
objectManagerLoader: tests/PHPStan/object_manager.php
# Report unmatched ignored errors
reportUnmatchedIgnoredErrors: false
# Bleeding edge features
treatPhpDocTypesAsCertain: false
ignoreErrors:
-
identifier: missingType.iterableValue
-
identifier: doctrine.associationType
-
identifier: doctrine.columnType
-
identifier: missingType.generics
path: src/Form