-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
49 lines (43 loc) · 890 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-nette/extension.neon
- vendor/phpstan/phpstan-nette/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
parameters:
level: 9
phpVersion: 80200
scanDirectories:
- src
fileExtensions:
- php
paths:
- src
- bin
ignoreErrors:
typeAliases:
ConfigShape: """
array{
app: array{
appDir: string,
namespace: string,
scopes: array<string>|null,
crafters: array<array{
crafter: string,
template: string,
class: string,
mode: string|null,
scopes: array<string>|null,
baseClass: string|null
}>|null
},
mate: array{
presets: array<string>|null
},
structs: array<string, array{
fields: array<string, array{
type: string,
nullable: bool|null
}>|null
}>|null
}
"""