aboutsummaryrefslogtreecommitdiff
path: root/src/Loader/LoaderInterface.php
diff options
context:
space:
mode:
authorАлександр Кирюхин <alexander@kiryukhin.su>2018-01-19 03:13:16 +0300
committerАлександр Кирюхин <alexander@kiryukhin.su>2018-01-19 03:13:16 +0300
commit6f452ea995c25a30f214a530fddc6e9d236bdfce (patch)
treeb6538c4e7bd600f3dd4bcaf0d1340155d95da373 /src/Loader/LoaderInterface.php
parent6b07f5f4ebb3043efc4991debebb14529cb77aa5 (diff)
Completed reference implementation, added tests
Diffstat (limited to 'src/Loader/LoaderInterface.php')
-rw-r--r--src/Loader/LoaderInterface.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Loader/LoaderInterface.php b/src/Loader/LoaderInterface.php
index 1c4f166..c848e6c 100644
--- a/src/Loader/LoaderInterface.php
+++ b/src/Loader/LoaderInterface.php
@@ -1,4 +1,6 @@
<?php
+declare(strict_types=1);
+
/**
* @author: Alexander Kiryukhin <alexander@kiryukhin.su>
* @license: MIT
@@ -6,9 +8,14 @@
namespace NeonXP\Dotenv\Loader;
+/**
+ * Interface LoaderInterface
+ * @package NeonXP\Dotenv\Loader
+ */
interface LoaderInterface
{
/**
+ * Load not empty lines from file or other source
* @param string $filePath
* @return string[]
*/