From 80f144a2aaa99c8bd7c7211b3a8ccb1be6ba9600 Mon Sep 17 00:00:00 2001 From: bytestream Date: Thu, 28 May 2026 23:20:56 +0100 Subject: [PATCH] Fix deprecation notice --- test/ContainerAwareBaseTestCase.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/ContainerAwareBaseTestCase.php b/test/ContainerAwareBaseTestCase.php index a596970..365274e 100644 --- a/test/ContainerAwareBaseTestCase.php +++ b/test/ContainerAwareBaseTestCase.php @@ -87,9 +87,7 @@ protected function setUp(): void */ $reflectionClass = new ReflectionObject($this->supportPal); $property = $reflectionClass->getProperty('containerBuilder'); - $property->setAccessible(true); $property->setValue($this->supportPal, $containerBuilder); - $property->setAccessible(false); $this->container = $containerBuilder; }