Просмотр файла vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php

Размер файла: 457B
  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. }