forked from barryvdh/laravel-dompdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
16 lines (15 loc) · 934 Bytes
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
includes:
parameters:
reportUnmatchedIgnoredErrors: false
paths:
- src
- tests
level: 8
ignoreErrors:
# This is a global alias that cannot be detected by Larastan.
- '#Call to static method loadHTML\(\) on an unknown class PDF\.#'
- '#Call to static method loadHTML\(\) on an unknown class Pdf\.#'
- '#Class Barryvdh\\DomPDF\\PDF has PHPDoc tag @method for method \S+\(\) parameter \#\d \$\S+ with no value type specified in iterable type array\.#'
- '#Class Barryvdh\\DomPDF\\PDF has PHPDoc tag @method for method \S+\(\) return type with no value type specified in iterable type array\.#'
- '#Class Barryvdh\\DomPDF\\Facade\\Pdf has PHPDoc tag @method for method \S+\(\) parameter \#\d \$\S+ with no value type specified in iterable type array\.#'
- '#Call to an undefined static method Illuminate\\Support\\Facades\\View::addLocation\(\)\.#'