File "LoaderInterface.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/vlucas/phpdotenv/src/Loader/LoaderInterface.php
File size: 695 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @license BSD-3-Clause
*
* Modified using {@see https://github.com/BrianHenryIE/strauss}.
*/
declare(strict_types=1);
namespace KadenceWP\KadenceStarterTemplates\Dotenv\Loader;
use KadenceWP\KadenceStarterTemplates\Dotenv\Repository\RepositoryInterface;
interface LoaderInterface
{
/**
* Load the given entries into the repository.
*
* @param \KadenceWP\KadenceStarterTemplates\Dotenv\Repository\RepositoryInterface $repository
* @param \KadenceWP\KadenceStarterTemplates\Dotenv\Parser\Entry[] $entries
*
* @return array<string,string|null>
*/
public function load(RepositoryInterface $repository, array $entries);
}