Skip to content

Commit

Permalink
refactor: add closure void return type in tests (#1180)
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralbot committed Dec 29, 2024
1 parent a1d53c8 commit 1a93203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Interceptor/Push/CoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function testCallWithTracerContext(): void
&& $payload === ['baz' => 'baf']
&& $options->getHeader('foo') === ['bar']);

ContainerScope::runScope($container, function() use($core) {
ContainerScope::runScope($container, function() use($core): void {
$core->callAction('foo', 'bar', [
'id' => 'job-id',
'payload' => ['baz' => 'baf'],
Expand Down

0 comments on commit 1a93203

Please sign in to comment.