From 92299988b44df94917137aaedd885bdd0da20847 Mon Sep 17 00:00:00 2001 From: Ilyas Salikhov Date: Tue, 29 Oct 2024 18:34:28 +0300 Subject: [PATCH] fix symfony notices for bundle declaration --- IntaroPinbaBundle.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/IntaroPinbaBundle.php b/IntaroPinbaBundle.php index 3d1c3f7..c109909 100644 --- a/IntaroPinbaBundle.php +++ b/IntaroPinbaBundle.php @@ -5,11 +5,10 @@ use Intaro\PinbaBundle\DependencyInjection\TwigPass; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; -use Symfony\Component\HttpKernel\Kernel; class IntaroPinbaBundle extends Bundle { - public function build(ContainerBuilder $container) + public function build(ContainerBuilder $container): void { $container->addCompilerPass(new TwigPass()); }