-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathphpstan.neon
More file actions
29 lines (23 loc) · 1.12 KB
/
phpstan.neon
File metadata and controls
29 lines (23 loc) · 1.12 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
includes:
- phpstan-baseline.neon
parameters:
parallel:
maximumNumberOfProcesses: 5
level: 2
paths:
- Classes
- Configuration
- Tests
ignoreErrors:
# @todo This ignoreError can be removed when support for TYPO3 v12 is dropped
-
message: "#Parameter \\$beforePageCacheIdentifierIsHashedEvent of method SourceBroker\\\\T3api\\\\EventListener\\\\EnrichPageCacheIdentifierParametersEventListener::__invoke\\(\\) has invalid type TYPO3\\\\CMS\\\\Frontend\\\\Event\\\\BeforePageCacheIdentifierIsHashedEvent#"
reportUnmatched: false
# @todo This ignoreError can be removed when support for TYPO3 v12 is dropped
-
message: "#Call to method setPageCacheIdentifierParameters\\(\\) on an unknown class TYPO3\\\\CMS\\\\Frontend\\\\Event\\\\BeforePageCacheIdentifierIsHashedEvent#"
reportUnmatched: false
# @todo This ignoreError can be removed when support for TYPO3 v12 is dropped
-
message: "#Call to method getPageCacheIdentifierParameters\\(\\) on an unknown class TYPO3\\\\CMS\\\\Frontend\\\\Event\\\\BeforePageCacheIdentifierIsHashedEvent#"
reportUnmatched: false