-
-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathphpstan.dist.neon
More file actions
31 lines (29 loc) · 905 Bytes
/
phpstan.dist.neon
File metadata and controls
31 lines (29 loc) · 905 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
parameters:
level: 6
bootstrapFiles:
- vendor/autoload.php
- tools/phpstan/includes/vendor/autoload.php
paths:
- src/Maker
- tests/Command
- tests/Docker
- tests/Maker
excludePaths:
- tests/Doctrine/fixtures
- tests/fixtures
- tests/Security/fixtures
- tests/Security/yaml_fixtures
- tests/tmp
- tests/Util/fixtures
- tests/Util/yaml_fixtures
ignoreErrors:
-
message: '#Property .+phpCompatUtil is never read, only written\.#'
path: src/Maker/*
-
message: '#Class Symfony\\Bundle\\MakerBundle\\Maker\\LegacyApiTestCase not found#'
path: src/Maker/*
-
message: '#^Method .*Test\:\:test\w+\(.* has no return type specified\.$#'
identifier: missingType.return
path: tests/*