@@ -211,6 +211,8 @@ conditionalTags:
211211 phpstan.rules.rule : %exceptions.check.missingCheckedExceptionInThrows%
212212 PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule :
213213 phpstan.rules.rule : %exceptions.check.missingCheckedExceptionInThrows%
214+ PHPStan\Rules\Properties\UninitializedPropertyRule :
215+ phpstan.rules.rule : %checkUninitializedProperties%
214216
215217services :
216218 -
@@ -320,11 +322,6 @@ services:
320322 tags :
321323 - phpstan.parser.richParserNodeVisitor
322324
323- -
324- class : PHPStan\Parser\PropertyHookNameVisitor
325- tags :
326- - phpstan.parser.richParserNodeVisitor
327-
328325 -
329326 class : PHPStan\Node\Printer\ExprPrinter
330327
@@ -739,6 +736,11 @@ services:
739736 tags :
740737 - phpstan.broker.dynamicMethodReturnTypeExtension
741738
739+ -
740+ class : PHPStan\Reflection\ConstructorsHelper
741+ arguments :
742+ additionalConstructors : %additionalConstructors%
743+
742744 -
743745 class : PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension
744746
@@ -991,6 +993,9 @@ services:
991993 -
992994 class : PHPStan\Rules\Methods\MethodParameterComparisonHelper
993995
996+ -
997+ class : PHPStan\Rules\Methods\MethodVisibilityComparisonHelper
998+
994999 -
9951000 class : PHPStan\Rules\MissingTypehintCheck
9961001 arguments :
@@ -1039,6 +1044,9 @@ services:
10391044 reportMagicProperties : %reportMagicProperties%
10401045 checkDynamicProperties : %checkDynamicProperties%
10411046
1047+ -
1048+ class : PHPStan\Rules\Properties\UninitializedPropertyRule
1049+
10421050 -
10431051 class : PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider
10441052
0 commit comments