Skip to content

Commit

Permalink
Merge pull request #435 from raziel057/add-return-type
Browse files Browse the repository at this point in the history
Fix SF6.3 deprecations (part2)
  • Loading branch information
bartmcleod committed Aug 7, 2023
2 parents 1804001 + 8fa4ac9 commit b4c1a62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Compiler/RegisterMappingPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class RegisterMappingPass implements CompilerPassInterface
/**
* {@inheritdoc}
*/
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
$storage = $container->getParameter('lexik_translation.storage');

Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/Compiler/TranslatorPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TranslatorPass implements CompilerPassInterface
/**
* {@inheritdoc}
*/
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
// loaders
$loaders = [];
Expand Down

0 comments on commit b4c1a62

Please sign in to comment.