Skip to content

Commit 01292d1

Browse files
authored
Introduce generics to describe Map classes (#92)
1 parent ea0ecdd commit 01292d1

11 files changed

+57563
-53
lines changed

phpstan-baseline.neon

-13
This file was deleted.

phpstan.neon.dist

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
includes:
2-
- phpstan-baseline.neon
3-
41
parameters:
52
level: max
63

74
paths:
85
- src
96
- tests
107

11-
ignoreErrors:
12-
# This is due to the test fixture MiniMap class not being autoloadable for PHPStan.
13-
-
14-
message: "#^Parameter \\#1 \\$mapClass of static method FileEye\\\\MimeMap\\\\MapHandler\\:\\:setDefaultMapClass\\(\\) expects class\\-string\\<FileEye\\\\MimeMap\\\\Map\\\\MimeMapInterface\\>, string given\\.$#"
15-
count: 1
16-
path: tests/src/MapUpdaterTest.php
8+
typeAliases:
9+
GenericMap: """
10+
array<string,array<string,array<string,array<int<0,max>,string>>>>
11+
"""
12+
MimeMap: """
13+
array{
14+
't': array<'e'|'desc'|'a',array<string,array<int<0,max>,string>>>,
15+
'e': array<'t',array<string,array<int<0,max>,string>>>,
16+
'a': array<'t',array<string,array<int<0,max>,string>>>
17+
}
18+
"""

0 commit comments

Comments
 (0)