/usr/share/php/Symfony/Component/DependencyInjection
NameSizeModeActions
Argument/-0755rm
Attribute/-0755rm
Compiler/-0755rm
Config/-0755rm
Dumper/-0755rm
Exception/-0755rm
Extension/-0755rm
LazyProxy/-0755rm
Loader/-0755rm
ParameterBag/-0755rm
Alias.php46280644editdlrm
autoload.php247680644editdlrm
ChildDefinition.php27270644editdlrm
Container.php138780644editdlrm
ContainerAwareInterface.php5900644editdlrm
ContainerAwareTrait.php5990644editdlrm
ContainerBuilder.php576430644editdlrm
ContainerInterface.php25140644editdlrm
Definition.php225140644editdlrm
EnvVarLoaderInterface.php6370644editdlrm
EnvVarProcessor.php106490644editdlrm
EnvVarProcessorInterface.php11620644editdlrm
ExpressionLanguage.php10790644editdlrm
ExpressionLanguageProvider.php15020644editdlrm
Parameter.php6240644editdlrm
Reference.php9850644editdlrm
ReverseContainer.php26080644editdlrm
ServiceLocator.php52920644editdlrm
TaggedContainerInterface.php7090644editdlrm
TypedReference.php12660644editdlrm
Variable.php7150644editdlrm
Edit: /usr/share/php/Symfony/Component/DependencyInjection/EnvVarProcessorInterface.php (1162B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection; use Symfony\Component\DependencyInjection\Exception\RuntimeException; /** * The EnvVarProcessorInterface is implemented by objects that manage environment-like variables. * * @author Nicolas Grekas */ interface EnvVarProcessorInterface { /** * Returns the value of the given variable as managed by the current instance. * * @param string $prefix The namespace of the variable * @param string $name The name of the variable within the namespace * @param \Closure $getEnv A closure that allows fetching more env vars * * @return mixed * * @throws RuntimeException on error */ public function getEnv(string $prefix, string $name, \Closure $getEnv); /** * @return string[] The PHP-types managed by getEnv(), keyed by prefixes */ public static function getProvidedTypes(); }