10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10dbd41 commit e4218a9Copy full SHA for e4218a9
src/Symfony/Component/DependencyInjection/Tests/Compiler/CheckDefinitionValidityPassTest.php
@@ -13,7 +13,6 @@
13
14
use PHPUnit\Framework\TestCase;
15
use Symfony\Component\DependencyInjection\Compiler\CheckDefinitionValidityPass;
16
-use Symfony\Component\DependencyInjection\Compiler\ResolveEnvPlaceholdersPass;
17
use Symfony\Component\DependencyInjection\ContainerBuilder;
18
19
class CheckDefinitionValidityPassTest extends TestCase
@@ -83,7 +82,7 @@ public function testInvalidTags()
83
82
public function testDynamicServiceName()
84
{
85
$container = new ContainerBuilder();
86
- $env = ($container->getParameterBag()->get('env(BAR)'));
+ $env = $container->getParameterBag()->get('env(BAR)');
87
$container->register("foo.$env", 'class');
88
89
$this->process($container);
0 commit comments