forked from rectorphp/getrector-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
28 lines (20 loc) · 1.03 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
parameters:
paths:
- src
- tests
excludePaths:
- */Fixture/*
- */Expected/*
level: 8
reportUnmatchedIgnoredErrors: false
ignoreErrors:
# in glob() we trust
- '#Method Rector\\Website\\Repository\\PostRepository\:\:findPostsFilePaths\(\) should return array<string> but returns array<int, string\|false>#'
# invalid doc type
- '#Parameter \#2 \$font of method Imagine\\Draw\\DrawerInterface\:\:text\(\) expects Imagine\\Image\\AbstractFont, Imagine\\Image\\FontInterface given#'
# float allowed
- '#Parameter (.*?) of class Imagine\\Image\\Box constructor expects int, float given#'
# known types
- '#Method Rector\\Website\\Tests\\Utils\\FileDiffCleanerTest\:\:split\(\) should return array\{string, string\} but returns array\{string\|null, string\|null\}#'
# will be solved most likely once Larastan is updated to Laravel 11 conventions
- '#Call to an undefined method Illuminate\\Contracts\\(.*?)|Illuminate\\#'