Skip to content

Commit

Permalink
Merge pull request #73 from lucasfoussier/master
Browse files Browse the repository at this point in the history
Fixing depreceated return of methods LoadAnnotationService::process and NzoUrIEncryptorBundle::build
  • Loading branch information
nayzo authored Jan 24, 2024
2 parents 2e58724 + 69488c4 commit 10720d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Compiler/LoadAnnotationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class LoadAnnotationService implements CompilerPassInterface
{
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
$container
->register('nzo.annotation_resolver', AnnotationResolver::class)
Expand Down
2 changes: 1 addition & 1 deletion NzoUrlEncryptorBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function getContainerExtension(): ?ExtensionInterface
return new NzoEncryptorExtension();
}

public function build(ContainerBuilder $container)
public function build(ContainerBuilder $container): void
{
$container->addCompilerPass(new LoadAnnotationService());
}
Expand Down

0 comments on commit 10720d6

Please # to comment.