Skip to content

Commit

Permalink
add void
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Oct 8, 2024
1 parent 4488900 commit 6502c2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class ProxyServiceWithMockPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
/** @var array $serviceIds */
$serviceIds = $container->getParameter('happyr_service_mock.services');
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/HappyrServiceMockingExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class HappyrServiceMockingExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
Expand Down

0 comments on commit 6502c2b

Please sign in to comment.