We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a47f65f commit a566cfdCopy full SHA for a566cfd
src/Extension/ImmediatelyCalledCallableThrowTypeExtension.php
@@ -147,7 +147,9 @@ static function (): void {
147
);
148
149
foreach ($result->getThrowPoints() as $throwPoint) {
150
- $throwTypes[] = $throwPoint->getType();
+ if ($throwPoint->isExplicit()) {
151
+ $throwTypes[] = $throwPoint->getType();
152
+ }
153
}
154
155
@@ -161,7 +163,9 @@ static function (): void {
161
163
162
164
165
166
167
168
169
170
171
0 commit comments