We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eed51c commit 8219753Copy full SHA for 8219753
src/Reflection/Type/IntersectionTypeMethodReflection.php
@@ -10,7 +10,6 @@
10
use PHPStan\Reflection\ExtendedMethodReflection;
11
use PHPStan\Reflection\ExtendedParametersAcceptor;
12
use PHPStan\Reflection\MethodReflection;
13
-use PHPStan\Reflection\ParametersAcceptor;
14
use PHPStan\ShouldNotHappenException;
15
use PHPStan\TrinaryLogic;
16
use PHPStan\Type\Type;
@@ -83,7 +82,7 @@ public function getVariants(): array
83
82
$returnTypes = [];
84
$phpDocReturnTypes = [];
85
$nativeReturnTypes = [];
86
- foreach($this->methods as $method) {
+ foreach ($this->methods as $method) {
87
$variants = $method->getVariants();
88
89
foreach ($variants as $acceptor) {
0 commit comments