9 lines
342 B
PHP
9 lines
342 B
PHP
<?php
|
|
namespace MailPoetVendor\Symfony\Component\DependencyInjection;
|
|
if (!defined('ABSPATH')) exit;
|
|
use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\RuntimeException;
|
|
interface EnvVarProcessorInterface
|
|
{
|
|
public function getEnv(string $prefix, string $name, \Closure $getEnv);
|
|
public static function getProvidedTypes();
|
|
}
|