-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpstan.neon
More file actions
27 lines (22 loc) · 780 Bytes
/
phpstan.neon
File metadata and controls
27 lines (22 loc) · 780 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
includes:
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-mockery/extension.neon
- phpstan-baseline.neon
parameters:
parallel:
processTimeout: 600.0
paths:
- src
- tests
# The level 8 is the highest level
level: 9
ignoreErrors:
- identifier: missingType.iterableValue
# Laravel 9 vs 10/11/12 compability
-
message: "#^Class Illuminate\\\\Http\\\\Client\\\\Events\\\\ConnectionFailed constructor invoked with 2 parameters, 1 required\\.$#"
count: 1
path: src/Laravel/LaravelServiceProvider.php
reportUnmatched: false