Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[HttpKernel] fix ArgumentMetadataFactory messes up controller arguments with attributes #41485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixes issue #41478 by resetting the $attributes array per controller …
…argument

also adds test to ensure correct metadata in cases where controller arguments without attributes follow arguments with attributes
  • Loading branch information
sgehrig committed Jun 1, 2021
commit bda0360e6495648e8f815e2363e3fc24a0711296
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public function createArgumentMetadata($controller): array
}

foreach ($reflection->getParameters() as $param) {
$attributes = [];
if (\PHP_VERSION_ID >= 80000) {
foreach ($param->getAttributes() as $reflectionAttribute) {
if (class_exists($reflectionAttribute->getName())) {
Expand All @@ -42,7 +43,7 @@ public function createArgumentMetadata($controller): array
}
}

$arguments[] = new ArgumentMetadata($param->getName(), $this->getType($param, $reflection), $param->isVariadic(), $param->isDefaultValueAvailable(), $param->isDefaultValueAvailable() ? $param->getDefaultValue() : null, $param->allowsNull(), $attributes ?? []);
$arguments[] = new ArgumentMetadata($param->getName(), $this->getType($param, $reflection), $param->isVariadic(), $param->isDefaultValueAvailable(), $param->isDefaultValueAvailable() ? $param->getDefaultValue() : null, $param->allowsNull(), $attributes);
}

return $arguments;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,18 @@ public function testMultipleAttributes()
$this->assertCount(1, $this->factory->createArgumentMetadata([new AttributeController(), 'multiAttributeArg'])[0]->getAttributes());
}

/**
* @requires PHP 8
*/
public function testIssue41478()
{
$arguments = $this->factory->createArgumentMetadata([new AttributeController(), 'issue41478']);
$this->assertEquals([
new ArgumentMetadata('baz', 'string', false, false, null, false, [new Foo('bar')]),
new ArgumentMetadata('bat', 'string', false, false, null, false, []),
], $arguments);
}

private function signature1(self $foo, array $bar, callable $baz)
{
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ public function action(#[Foo('bar')] string $baz) {

public function multiAttributeArg(#[Foo('bar'), Undefined('bar')] string $baz) {
}

public function issue41478(#[Foo('bar')] string $baz, string $bat) {
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.