Skip to content

Commit

Permalink
Add missing return type in MessengerAzureQueueTransportExtension (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
SpartakusMd authored Sep 29, 2023
1 parent 72df6ea commit fe60a1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/var-dumper": "^4.3|^5.0"
"symfony/var-dumper": "^4.3|^5.0|^6.0"
},
"scripts": {
"test": "phpunit tests --testdox"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class MessengerAzureQueueTransportExtension extends Extension
/**
* @inheritDoc
*/
public function load(array $configs, ContainerBuilder $container)
public function load(array $configs, ContainerBuilder $container): void
{
$loader = new YamlFileLoader(
$container,
Expand All @@ -24,4 +24,4 @@ public function load(array $configs, ContainerBuilder $container)

$loader->load('services.yaml');
}
}
}

0 comments on commit fe60a1f

Please sign in to comment.