-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpstan.neon
More file actions
40 lines (29 loc) · 995 Bytes
/
phpstan.neon
File metadata and controls
40 lines (29 loc) · 995 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
32
33
34
35
36
37
38
39
40
includes:
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
parameters:
level: 6
paths:
- wggallery/class
- wggallery/include
- wggallery/admin
- wggallery/plugins
- wggallery/preloads
autoload_directories:
- wggallery/class
- wggallery/include
scanDirectories:
- wggallery
- vendor
checkMissingIterableValueType: false
ignoreErrors:
# XOOPS: dynamische Properties
- '#Access to an undefined property.*#'
# XOOPS: global $xoopsDB, $xoopsUser etc.
- '#Undefined variable\: \$xoops(DB|User|Module|Tpl)#'
# XOOPS Request-API
- '#Call to static method get(Var)? on an unknown class XOOPSRequest#'
# XOOPS: Legacy-Handler erzeugt unbekannte Klassen
- '#Instantiated class .* not found.#'
# XOOPS: Sprachkonstanten kommen aus globalen defines
- '#Constant .* not found.#'
reportUnmatchedIgnoredErrors: false