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 6fac59f commit 38fdbabCopy full SHA for 38fdbab
src/Type/Definition/Argument.php
@@ -73,9 +73,10 @@ public static function listFromConfig(iterable $config): array
73
$argConfig = ['type' => $argConfig];
74
}
75
76
- /** @phpstan-var ArgumentConfig $finalArgConfig */
77
- $finalArgConfig = $argConfig + ['name' => $name];
78
- $list[] = new self($finalArgConfig);
+ /** @phpstan-var ArgumentConfig $argConfigWithName */
+ $argConfigWithName = $argConfig + ['name' => $name];
+
79
+ $list[] = new self($argConfigWithName );
80
81
82
return $list;
0 commit comments