Skip to content

Commit

Permalink
refac: fix deprecation messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gimler committed Jun 5, 2024
1 parent 4b1b55a commit 7e518a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ClientCompilerPass implements CompilerPassInterface
{
const CLIENT_TAG = 'freshcells_soap_client.client';

public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
$clients = $container->findTaggedServiceIds(self::CLIENT_TAG);

Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/FreshcellsSoapClientExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class FreshcellsSoapClientExtension extends Extension
/**
* {@inheritDoc}
*/
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
2 changes: 1 addition & 1 deletion src/FreshcellsSoapClientBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class FreshcellsSoapClientBundle extends Bundle
{
public function build(ContainerBuilder $container)
public function build(ContainerBuilder $container): void
{
parent::build($container);

Expand Down

0 comments on commit 7e518a5

Please sign in to comment.