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 d45f041 commit 7042e33Copy full SHA for 7042e33
configuration/external_parameters.rst
@@ -474,15 +474,10 @@ create a class that implements
474
:class:`Symfony\\Component\\DependencyInjection\\EnvVarProcessorInterface` and
475
then, define a service for that class::
476
477
+ use Symfony\Component\DependencyInjection\EnvVarProcessorInterface;
478
+
479
class LowercasingEnvVarProcessor implements EnvVarProcessorInterface
480
{
- private $container;
-
481
- public function __construct(ContainerInterface $container)
482
- {
483
- $this->container = $container;
484
- }
485
486
public function getEnv($prefix, $name, \Closure $getEnv)
487
488
$env = $getEnv($name);
0 commit comments