diff options
Diffstat (limited to 'src/Loader/LoaderInterface.php')
-rw-r--r-- | src/Loader/LoaderInterface.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Loader/LoaderInterface.php b/src/Loader/LoaderInterface.php new file mode 100644 index 0000000..1c4f166 --- /dev/null +++ b/src/Loader/LoaderInterface.php @@ -0,0 +1,16 @@ +<?php +/** + * @author: Alexander Kiryukhin <alexander@kiryukhin.su> + * @license: MIT + */ + +namespace NeonXP\Dotenv\Loader; + +interface LoaderInterface +{ + /** + * @param string $filePath + * @return string[] + */ + public function load(string $filePath = '.env'): array; +}
\ No newline at end of file |