StoreInterface.php 316 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace Dotenv\Store;
  4. interface StoreInterface
  5. {
  6. /**
  7. * Read the content of the environment file(s).
  8. *
  9. * @throws \Dotenv\Exception\InvalidEncodingException|\Dotenv\Exception\InvalidPathException
  10. *
  11. * @return string
  12. */
  13. public function read();
  14. }