-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon.dist
More file actions
67 lines (67 loc) · 3.27 KB
/
Copy pathphpstan.neon.dist
File metadata and controls
67 lines (67 loc) · 3.27 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
parameters:
level: max
paths:
- src
- tests
reportUnmatchedIgnoredErrors: true
ignoreErrors:
# The compared values are a list of strings carried on a value-object constructor.
- identifier: missingType.iterableValue
path: src/Comparison.php
- identifier: return.type
path: src/Comparison.php
# The child filters are a list of nodes carried on a value-object constructor.
- identifier: missingType.iterableValue
path: src/Group.php
- identifier: return.type
path: src/Group.php
# The orders are a list of nodes carried on a value-object constructor.
- identifier: missingType.iterableValue
path: src/Sort.php
- identifier: return.type
path: src/Sort.php
# The sortable fields are a list of strings carried on the schema constructor.
- identifier: missingType.iterableValue
path: src/Schema.php
# The validated conjunction is a list of comparisons produced by the shape walker.
- identifier: missingType.iterableValue
path: src/Internal/Conjunction.php
# The filter marker is sealed by Comparison and Group, so the renderer match is exhaustive.
- identifier: match.unhandled
path: src/Internal/Rsql/Renderer.php
# The parsed and validated specifications are lists carried by the internal query.
- identifier: missingType.iterableValue
path: src/Internal/Query.php
# The validated comparisons are a list carried on the cursor criteria.
- identifier: missingType.iterableValue
path: src/Cursor/Criteria.php
- identifier: return.type
path: src/Cursor/Criteria.php
# The validated comparisons are a list carried on the offset criteria.
- identifier: missingType.iterableValue
path: src/Offset/Criteria.php
- identifier: return.type
path: src/Offset/Criteria.php
# The permitted operators and values are lists carried on a value-object collaborator.
- identifier: missingType.iterableValue
path: src/Internal/AllowedField.php
- identifier: missingType.iterableValue
path: src/Internal/AllowedFilters.php
# reduce() folds the links into the associative body; phpstan widens the carry to array<mixed>.
- identifier: return.type
path: src/Links.php
# The page metadata is an associative array of scalars passed through to the response body.
- identifier: missingType.iterableValue
path: src/Internal/Rendering.php
# The page items are an opaque collection forwarded as-is to the response body.
- identifier: missingType.generics
path: src/Internal/Rendering.php
# Cursor key values are opaque, decoded scalars carried on a constructor parameter.
- identifier: missingType.iterableValue
path: src/Cursor/Token.php
# The cursor codec encodes and decodes opaque key values whose types are not known.
- identifier: missingType.iterableValue
path: src/Internal/Cursor/CursorCodec.php
# Test fixtures and data providers carry raw arrays at the test boundary.
- identifier: missingType.iterableValue
path: tests