diff options
Diffstat (limited to 'vendor/vlucas/phpdotenv/src/Store/StoreInterface.php')
| -rw-r--r-- | vendor/vlucas/phpdotenv/src/Store/StoreInterface.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php b/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php new file mode 100644 index 0000000..6f5b986 --- /dev/null +++ b/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php @@ -0,0 +1,17 @@ +<?php + +declare(strict_types=1); + +namespace Dotenv\Store; + +interface StoreInterface +{ + /** + * Read the content of the environment file(s). + * + * @throws \Dotenv\Exception\InvalidEncodingException|\Dotenv\Exception\InvalidPathException + * + * @return string + */ + public function read(); +} |
