From f05848243e79325a7f116020f4ba4b1d8fb3986f Mon Sep 17 00:00:00 2001 From: developermarshak Date: Mon, 8 Apr 2024 17:44:07 +0300 Subject: [PATCH] Added missing return type to AutoMapperPlusBundle::build() to fix deprecation --- AutoMapperPlusBundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoMapperPlusBundle.php b/AutoMapperPlusBundle.php index 821286f..f4b744b 100644 --- a/AutoMapperPlusBundle.php +++ b/AutoMapperPlusBundle.php @@ -16,7 +16,7 @@ class AutoMapperPlusBundle extends Bundle /** * @inheritdoc */ - public function build(ContainerBuilder $container) + public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new ConfigurationLoaderPass());