forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon.dist
239 lines (203 loc) · 10.5 KB
/
phpstan.neon.dist
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
237
238
239
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/WebInstaller/src/Resources/
- src/WebInstaller/ecs.php
- src/WebInstaller/vendor
- src/WebInstaller/tests/_fixtures
- src/Core/DevOps/StaticAnalyze/Rector/ClassPackageRector.php
# 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
- src/Core/Framework/Adapter/Cache/ShopwareRedisTagAwareAdapter.php
# node_modules
- src/**/node_modules/*
- tests/**/node_modules/*
# 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
# @todo NEXT-22697 - Remove when re-enabling cms-aware
- src/Core/System/CustomEntity/Xml/Config/CustomEntityEnrichmentService.php
- tests/integration/php/Core/System/CustomEntity/Xml/Config/CmsAwareAndAdminUiTest.php
# PHPStan rule test files
- tests/unit/php/Core/DevOps/StaticAnalyse/PHPStan/Rules/data/*
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
- src/**/*TestCase.php
- tests/performance/**/*Bench.php
- tests/integration/**/*Test.php
- tests/integration/**/*TestCase.php
# ignore errors caused by static::markTestSkipped
-
message: '#Unreachable statement - code above always terminates.#'
paths:
- src/**/*Test.php
- tests/**/*Test.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\.#'
- '#.*extends @final class Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityRepository.#'
# 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
# can be removed with feature flag FEATURE_NEXT_12455
-
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
- # 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
- # Tests are skipped in setup, leading to phpstan errors, should be re-enabled with NEXT-24549
message: "#^Property .* is never written, only read.$#"
paths:
- src/Core/Migration/Test/Migration1648803451FixInvalidMigrationOfBusinessEventToFlowTest.php
- src/Core/Migration/Test/Migration1639992771MoveDataFromEventActionToFlowTest.php
- src/Core/Migration/Test/Migration1632215760MoveDataFromEventActionToFlowTest.php
- src/Core/Migration/Test/Migration1625583619MoveDataFromEventActionToFlowTest.php
- # @deprecated tag:v6.5.0 Using autoload === true on associations is deprecated and must be refactored
message: '#^[a-zA-Z_]+\.[a-zA-Z_]+ association has a configured autoload\=\=\=true, this is forbidden for platform integrations$#'
paths:
- src/Core/System/SalesChannel/SalesChannelDefinition.php
- src/Core/Content/Rule/Aggregate/RuleCondition/RuleConditionDefinition.php
- src/Core/Content/Product/ProductDefinition.php
- src/Core/Content/Product/Aggregate/ProductMedia/ProductMediaDefinition.php
- src/Core/Content/ImportExport/Aggregate/ImportExportLog/ImportExportLogDefinition.php
- src/Core/Checkout/Shipping/ShippingMethodDefinition.php
- src/Core/Checkout/Payment/PaymentMethodDefinition.php
- src/Core/System/NumberRange/NumberRangeDefinition.php
- # NEXT-25276 - Needs to be fixed with the update ot PHPUnit 10
message: '#deprecated interface PHPUnit\\Framework\\TestListener#'
path: src/Core/Framework/Test/TestCaseBase/DatadogListener.php
# Internal deprecations of Shopware are handled in other places
- '#deprecated.*class Shopware\\#'
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
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\NoDALAutoload
tags:
- phpstan.rules.rule
-
class: Shopware\Core\DevOps\StaticAnalyze\PHPStan\Rules\PHPUnitDataProviderStaticRule
tags:
- phpstan.rules.rule