We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3080319 commit eee8ea1Copy full SHA for eee8ea1
tests/DependencyInjection/Compiler/FactoryValidatorPassTest.php
@@ -33,7 +33,9 @@ protected function tearDown(): void
33
{
34
$reflection = new \ReflectionObject($this->compilerPass);
35
$prop = $reflection->getProperty('factoryServiceIds');
36
- $prop->setAccessible(true);
+ if (PHP_VERSION_ID < 80100) {
37
+ $prop->setAccessible(true);
38
+ }
39
$prop->setValue(null, []);
40
}
41
0 commit comments