10000 [Messenger] Allow accessing all options on a handler descriptor by ruudk · Pull Request #50978 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Messenger] Allow accessing all options on a handler descriptor #50978

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
Jul 30, 2023
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
1 change: 1 addition & 0 deletions src/Symfony/Component/Messenger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
---

* Deprecate `StopWorkerOnSignalsListener` in favor of using the `SignalableCommandInterface`
* Add `HandlerDescriptor::getOptions`

6.3
---
Expand Down
5 changes: 5 additions & 0 deletions src/Symfony/Component/Messenger/Handler/HandlerDescriptor.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,9 @@ public function getOption(string $option): mixed
{
return $this->options[$option] ?? null;
}

public function getOptions(): array
{
return $this->options;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ public function __invoke()
}
}, 'class@anonymous%sHandleDescriptorTest.php%s::__invoke'];
}

public function testGetOptions()
{
$options = ['option1' => 'value1', 'option2' => 'value2'];
$descriptor = new HandlerDescriptor(function () {}, $options);

$this->assertSame($options, $descriptor->getOptions());
}
}

class DummyCommandHandlerWithSpecificMethod
Expand Down
0