forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
236 lines (203 loc) · 10.7 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
includes:
- phpstan-baseline.neon
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
parameters:
phpVersion: 80100
level: 8
treatPhpDocTypesAsCertain: false
checkMissingIterableValueType: true
inferPrivatePropertyTypeFromConstructor: true
reportUnmatchedIgnoredErrors: true # Could be set to false if necessary during PHPStan update
tmpDir: var/cache/phpstan
paths:
- src
- tests
bootstrapFiles:
- src/Core/DevOps/StaticAnalyze/PHPStan/phpstan-bootstrap.php
# run `php src/Core/DevOps/StaticAnalyze/PHPStan/phpstan-bootstrap.php` to create the container
symfony:
constantHassers: false
containerXmlPath: 'var/cache/phpstan_dev/Shopware_Core_DevOps_StaticAnalyze_StaticAnalyzeKernelPhpstan_devDebugContainer.xml'
consoleApplicationLoader: src/Core/DevOps/StaticAnalyze/PHPStan/console-application.php
excludePaths:
- src/Docs/*
- src/Recovery/*
# Compatibility fixes for doctrine annotation parser https://github.com/doctrine/annotations/issues/421
- src/Core/Framework/Compatibility/AnnotationReader.php
- src/Core/Framework/Compatibility/DocParser.php
# Symfony interface typehints `Predis\ClientInterface` which is by default not available
- src/Core/Framework/Adapter/Cache/ShopwareRedisAdapter.php
# node_modules
- src/**/node_modules/*
# @deprecated tag:v6.5.0 (replacing production template dev-dependencies is not allowed atm)
- src/Core/Framework/Demodata/DemodataService.php
- src/Core/Framework/Demodata/Generator/MediaGenerator.php
# twig override
- src/Core/Framework/Adapter/Twig/functions.php
# class behind feature flags
- src/Core/Checkout/Cart/Exception/InvalidCartException.php
# extends final class, which is ok for mocks
- src/Core/Content/Test/ImportExport/MockRepository.php
ignoreErrors:
# The symfony extension checks against the "normal" container, not the test container
# Therefore some services in the tests are not found and the extension can not infer that all private services are public during test execution
-
message: '#Service ".*" is not registered in the container\.#'
paths:
- src/**/*Test.php
- tests/unit/php
- tests/integration/php
- src/Core/Framework/Test/TestCaseBase/*.php
-
message: '#Service ".*" is private#'
paths:
- src/**/*Test.php
- tests/performance/**/*Bench.php
- tests/integration/**/*Test.php
# ignore errors caused by static::markTestSkipped
-
message: '#Unreachable statement - code above always terminates.#'
paths:
- src/**/*Test.php
# @feature-deprecated tag:v6.5.0 (flag:FEATURE_NEXT_12455)
-
message: '#Method Shopware\\Storefront\\Framework\\Captcha\\AbstractCaptcha::isValid\(\) invoked with 2 parameters, 1 required\.#'
path: src/Storefront/Framework/Captcha/CaptchaRouteListener.php
# To fix this error, the \Shopware\Core\Framework\Struct\Collection::createNew method has to be implemented
# in every implementation of `Collection` and needs to return `new self` instead of `new static`. See https://github.com/phpstan/phpstan/issues/2773
-
message: '#Unsafe usage of new static\(\)#'
path: src/Core/Framework/Struct/Collection.php
-
message: '#Access to private property#'
path: src/Core/Framework/Api/Controller/CacheController.php
# @final annotation of internal classes
- '#.*extends @final class Shopware\\Core\\Framework\\DataAbstractionLayer\\Search\\EntitySearchResult\.#'
# The redis proxy and cluster has a magic __call method which is not considered by phpstan
-
message: '#Call to an undefined method .*RedisProxy.*::.*\(\).*#'
path: src/**/*.php
-
message: '#Cannot call method .* on .*RedisProxy.*#'
path: src/**/*.php
# dynamic hydrator performance
-
message: '#Access to an undefined property Shopware\\Core\\Framework\\DataAbstractionLayer\\Entity#'
path: src/*/*Hydrator.php
-
message: '#Access to protected property *#'
path: src/*/*Hydrator.php
-
message: '#Method Shopware\\Core\\Framework\\DataAbstractionLayer\\Entity::\_\_.*\(\) has.*#'
path: src/Core/Framework/DataAbstractionLayer/Entity.php
# Shopware\\Core\\Checkout\\Cart\\Exception\\InvalidCartException is behind a feature flag
-
message: '#.*Shopware\\Core\\Checkout\\Cart\\Exception\\InvalidCartException.*#'
path: src/Core/Checkout/Cart/CartException.php
# can be removed with feature flag FEATURE_NEXT_12455
-
message: '#Constructor of class Shopware\\Core\\Checkout\\Customer\\Exception\\DuplicateWishlistProductException has an unused parameter \$productId\.#'
path: src/Core/Checkout/Customer/Exception/DuplicateWishlistProductException.php
-
message: '#Constructor of class Shopware\\Core\\Checkout\\Order\\Exception\\LanguageOfOrderDeleteException has an unused parameter \$language\.#'
path: src/Core/Checkout/Order/Exception/LanguageOfOrderDeleteException.php
-
message: '#Constructor of class Shopware\\Core\\Content\\Newsletter\\Exception\\LanguageOfNewsletterDeleteException has an unused parameter \$language\.#'
path: src/Core/Content/Newsletter/Exception/LanguageOfNewsletterDeleteException.php
-
message: '#Constructor of class Shopware\\Core\\System\\Language\\Exception\\LanguageForeignKeyDeleteException has an unused parameter \$language\.#'
path: src/Core/System/Language/Exception/LanguageForeignKeyDeleteException.php
-
message: '#Constructor of class Shopware\\Core\\System\\SalesChannel\\Exception\\LanguageOfSalesChannelDomainDeleteException has an unused parameter \$language\.#'
path: src/Core/System/SalesChannel/Exception/LanguageOfSalesChannelDomainDeleteException.php
-
message: '#Method Shopware\\Core\\Checkout\\Cart\\Facade\\.*::getIterator\(\) return type with generic class ArrayIterator does not specify its types: TKey, TValue#'
path: src/Core/Checkout/Cart/Facade/Traits/ItemsIteratorTrait.php
# Is in the new super class nullable as the extended class
-
message: "#^PHPDoc type string\\|null of property Shopware\\\\Core\\\\Framework\\\\DataAbstractionLayer\\\\Field\\\\ReferenceVersionField\\:\\:\\$storageName is not covariant with PHPDoc type string of overridden property Shopware\\\\Core\\\\Framework\\\\DataAbstractionLayer\\\\Field\\\\FkField\\:\\:\\$storageName\\.$#"
count: 1
path: src/Core/Framework/DataAbstractionLayer/Field/ReferenceVersionField.php
# PhpStan cannot follow the referenced cursor
-
message: "#^Variable \\$extensions in empty\\(\\) always exists and is always falsy\\.$#"
count: 1
path: src/Core/Framework/DataAbstractionLayer/VersionManager.php
# Invalid trait usage
-
message: "#^Dead catch \\- ReflectionException is never thrown in the try block\\.$#"
count: 1
path: src/Core/Checkout/Cart/Error/Error.php
-
message: "#^Dead catch \\- ReflectionException is never thrown in the try block\\.$#"
count: 1
path: src/Core/Content/ProductExport/Error/Error.php
# Can be removed with 6.5 release (NEXT-19158)
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$htmlEscape$#"
count: 1
path: src/Core/Framework/Adapter/Twig/StringTemplateRenderer.php
# Method will get third parameter in 6.5
-
message: "#^Method Shopware\\\\Storefront\\\\Framework\\\\Cache\\\\ReverseProxy\\\\AbstractReverseProxyGateway\\:\\:tag\\(\\) invoked with 3 parameters, 2 required\\.$#"
count: 1
path: src/Storefront/Framework/Cache/ReverseProxy/ReverseProxyCache.php
# Maybe a bug in phpstan: https://github.com/phpstan/phpstan/issues/7560
- '#Trait .* is used zero times and is not analysed.#'
- # MockRepo extends final EntityRepository class, with is ok for tests
message: "#^Class Shopware\\Core\\Content\\Test\\ImportExport\\MockRepository extends @final class Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityRepository.$#"
count: 1
path: src/Core/Content/Test/ImportExport/MockRepository.php
services:
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\Deprecation\DeprecatedMethodsThrowDeprecationRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\Internal\InternalClassRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\Internal\InternalMethodRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\Tests\CoversAnnotationRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\FinalClassRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\Tests\MockingSimpleObjectsNotAllowedRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\ScheduledTaskTooLowIntervalRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\RuleAreasFlagNotAllowedRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\NoEnvironmentHelperInsideCompilerPassRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\NoSuperGlobalsInsideCompilerPassRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Type\CollectionHasSpecifyingExtension
tags:
- phpstan.typeSpecifier.methodTypeSpecifyingExtension
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\RuleConditionHasRuleConfigRule
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\PackageAnnotationRule
tags:
- phpstan.rules.rule