Skip to content

Commit e3e80f6

Browse files
committed
Missing typehints should be consistently checked on level 6
1 parent 052f6b1 commit e3e80f6

14 files changed

+29
-2
lines changed

conf/config.neon

+3
Original file line numberDiff line numberDiff line change
@@ -919,17 +919,20 @@ services:
919919
class: PHPStan\Rules\Classes\MethodTagCheck
920920
arguments:
921921
checkClassCaseSensitivity: %checkClassCaseSensitivity%
922+
checkMissingTypehints: %checkMissingTypehints%
922923

923924
-
924925
class: PHPStan\Rules\Classes\MixinCheck
925926
arguments:
926927
checkClassCaseSensitivity: %checkClassCaseSensitivity%
927928
absentTypeChecks: %featureToggles.absentTypeChecks%
929+
checkMissingTypehints: %checkMissingTypehints%
928930

929931
-
930932
class: PHPStan\Rules\Classes\PropertyTagCheck
931933
arguments:
932934
checkClassCaseSensitivity: %checkClassCaseSensitivity%
935+
checkMissingTypehints: %checkMissingTypehints%
933936

934937
-
935938
class: PHPStan\Rules\Comparison\ConstantConditionRuleHelper

src/PhpDoc/StubValidator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,12 @@ private function getRuleRegistry(Container $container): RuleRegistry
251251
if ((bool) $container->getParameter('featureToggles')['absentTypeChecks']) {
252252
$rules[] = new MissingMethodSelfOutTypeRule($missingTypehintCheck);
253253

254-
$methodTagCheck = new MethodTagCheck($reflectionProvider, $classNameCheck, $genericObjectTypeCheck, $missingTypehintCheck, $unresolvableTypeHelper, true);
254+
$methodTagCheck = new MethodTagCheck($reflectionProvider, $classNameCheck, $genericObjectTypeCheck, $missingTypehintCheck, $unresolvableTypeHelper, true, true);
255255
$rules[] = new MethodTagRule($methodTagCheck);
256256
$rules[] = new MethodTagTraitRule($methodTagCheck, $reflectionProvider);
257257
$rules[] = new MethodTagTraitUseRule($methodTagCheck);
258258

259-
$propertyTagCheck = new PropertyTagCheck($reflectionProvider, $classNameCheck, $genericObjectTypeCheck, $missingTypehintCheck, $unresolvableTypeHelper, true);
259+
$propertyTagCheck = new PropertyTagCheck($reflectionProvider, $classNameCheck, $genericObjectTypeCheck, $missingTypehintCheck, $unresolvableTypeHelper, true, true);
260260
$rules[] = new PropertyTagRule($propertyTagCheck);
261261
$rules[] = new PropertyTagTraitRule($propertyTagCheck, $reflectionProvider);
262262
$rules[] = new PropertyTagTraitUseRule($propertyTagCheck);

src/Rules/Classes/MethodTagCheck.php

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public function __construct(
2929
private MissingTypehintCheck $missingTypehintCheck,
3030
private UnresolvableTypeHelper $unresolvableTypeHelper,
3131
private bool $checkClassCaseSensitivity,
32+
private bool $checkMissingTypehints,
3233
)
3334
{
3435
}
@@ -161,6 +162,10 @@ public function checkInTraitUseContext(
161162
*/
162163
private function checkMethodTypeInTraitDefinitionContext(ClassReflection $classReflection, string $methodName, string $description, Type $type): array
163164
{
165+
if (!$this->checkMissingTypehints) {
166+
return [];
167+
}
168+
164169
$errors = [];
165170
foreach ($this->missingTypehintCheck->getNonGenericObjectTypesWithGenericClass($type) as [$innerName, $genericTypeNames]) {
166171
$errors[] = RuleErrorBuilder::message(sprintf(

src/Rules/Classes/MixinCheck.php

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public function __construct(
2828
private UnresolvableTypeHelper $unresolvableTypeHelper,
2929
private bool $checkClassCaseSensitivity,
3030
private bool $absentTypeChecks,
31+
private bool $checkMissingTypehints,
3132
)
3233
{
3334
}
@@ -68,6 +69,10 @@ public function checkInTraitDefinitionContext(ClassReflection $classReflection):
6869
continue;
6970
}
7071

72+
if (!$this->checkMissingTypehints) {
73+
continue;
74+
}
75+
7176
foreach ($this->missingTypehintCheck->getIterableTypesWithMissingValueTypehint($type) as $iterableType) {
7277
$iterableTypeDescription = $iterableType->describe(VerbosityLevel::typeOnly());
7378
$errors[] = RuleErrorBuilder::message(sprintf(

src/Rules/Classes/PropertyTagCheck.php

+5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public function __construct(
3131
private MissingTypehintCheck $missingTypehintCheck,
3232
private UnresolvableTypeHelper $unresolvableTypeHelper,
3333
private bool $checkClassCaseSensitivity,
34+
private bool $checkMissingTypehints,
3435
)
3536
{
3637
}
@@ -141,6 +142,10 @@ private function getTypesAndTagName(PropertyTag $propertyTag): array
141142
*/
142143
private function checkPropertyTypeInTraitDefinitionContext(ClassReflection $classReflection, string $propertyName, string $tagName, Type $type): array
143144
{
145+
if (!$this->checkMissingTypehints) {
146+
return [];
147+
}
148+
144149
$errors = [];
145150

146151
foreach ($this->missingTypehintCheck->getNonGenericObjectTypesWithGenericClass($type) as [$innerName, $genericTypeNames]) {

tests/PHPStan/Rules/Classes/MethodTagRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ protected function getRule(): TRule
3232
new MissingTypehintCheck(true, true, true, true, []),
3333
new UnresolvableTypeHelper(),
3434
true,
35+
true,
3536
),
3637
);
3738
}

tests/PHPStan/Rules/Classes/MethodTagTraitRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ protected function getRule(): TRule
3232
new MissingTypehintCheck(true, true, true, true, []),
3333
new UnresolvableTypeHelper(),
3434
true,
35+
true,
3536
),
3637
$reflectionProvider,
3738
);

tests/PHPStan/Rules/Classes/MethodTagTraitUseRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ protected function getRule(): TRule
3333
new MissingTypehintCheck(true, true, true, true, []),
3434
new UnresolvableTypeHelper(),
3535
true,
36+
true,
3637
),
3738
);
3839
}

tests/PHPStan/Rules/Classes/MixinRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ protected function getRule(): Rule
3434
new UnresolvableTypeHelper(),
3535
true,
3636
true,
37+
true,
3738
),
3839
);
3940
}

tests/PHPStan/Rules/Classes/MixinTraitRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ protected function getRule(): Rule
3333
new UnresolvableTypeHelper(),
3434
true,
3535
true,
36+
true,
3637
),
3738
$reflectionProvider,
3839
);

tests/PHPStan/Rules/Classes/MixinTraitUseRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ protected function getRule(): Rule
3333
new UnresolvableTypeHelper(),
3434
true,
3535
true,
36+
true,
3637
),
3738
);
3839
}

tests/PHPStan/Rules/Classes/PropertyTagRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ protected function getRule(): TRule
3232
new MissingTypehintCheck(true, true, true, true, []),
3333
new UnresolvableTypeHelper(),
3434
true,
35+
true,
3536
),
3637
);
3738
}

tests/PHPStan/Rules/Classes/PropertyTagTraitRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ protected function getRule(): TRule
3232
new MissingTypehintCheck(true, true, true, true, []),
3333
new UnresolvableTypeHelper(),
3434
true,
35+
true,
3536
),
3637
$reflectionProvider,
3738
);

tests/PHPStan/Rules/Classes/PropertyTagTraitUseRuleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ protected function getRule(): TRule
3232
new MissingTypehintCheck(true, true, true, true, []),
3333
new UnresolvableTypeHelper(),
3434
true,
35+
true,
3536
),
3637
);
3738
}

0 commit comments

Comments
 (0)