8 lines
177 B
PHP
8 lines
177 B
PHP
|
<?php
|
||
|
namespace MailPoetVendor\Symfony\Component\DependencyInjection;
|
||
|
if (!defined('ABSPATH')) exit;
|
||
|
interface EnvVarLoaderInterface
|
||
|
{
|
||
|
public function loadEnvVars() : array;
|
||
|
}
|