Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace Dotenv\Loader;
6
 
7
use Dotenv\Repository\RepositoryInterface;
8
 
9
interface LoaderInterface
10
{
11
    /**
12
     * Load the given entries into the repository.
13
     *
14
     * @param \Dotenv\Repository\RepositoryInterface $repository
15
     * @param \Dotenv\Parser\Entry[]                 $entries
16
     *
17
     * @return array<string,string|null>
18
     */
19
    public function load(RepositoryInterface $repository, array $entries);
20
}