diff options
Diffstat (limited to 'vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php')
| -rw-r--r-- | vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php b/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php new file mode 100644 index 0000000..275d98e --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php @@ -0,0 +1,20 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Loader; + +use Dotenv\Repository\RepositoryInterface; + +interface LoaderInterface +{ + /** + * Load the given entries into the repository. + * + * @param \Dotenv\Repository\RepositoryInterface $repository + * @param \Dotenv\Parser\Entry[] $entries + * + * @return array<string,string|null> + */ + public function load(RepositoryInterface $repository, array $entries); +} |
