forked from phpjuice/opencf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
32 lines (24 loc) · 879 Bytes
/
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
parameters:
level: max
paths:
- src
- tests
scanFiles:
# Pest handles loading custom helpers only when running tests
# @see https://pestphp.com/docs/helpers#usage
- tests/Pest.php
checkMissingIterableValueType: false
reportUnmatchedIgnoredErrors: true
ignoreErrors:
# Pest implicitly binds $this to the current test case
# @see https://pestphp.com/docs/underlying-test-case
-
message: '#^Undefined variable: \$this$#'
paths:
- tests/*
# Pest custom expectations are dynamic and not conducive static analysis
# @see https://pestphp.com/docs/expectations#custom-expectations
-
message: '#Call to an undefined method Pest\\Expectation|Pest\\Support\\Extendable::#'
paths:
- tests/*