aboutsummaryrefslogtreecommitdiff
path: root/src/Parser/ParserInterface.php
diff options
context:
space:
mode:
authorАлександр Кирюхин <alexander@kiryukhin.su>2018-01-19 19:03:26 +0300
committerАлександр Кирюхин <alexander@kiryukhin.su>2018-01-19 19:03:26 +0300
commit8ea647570b87adda400e5a3ce6c91f4b51327a0d (patch)
tree7c5d328b41e64c3e78ac89c9674747346233c87a /src/Parser/ParserInterface.php
parent47c9d580c6e799e72b6a70b22dd5107790b1d3e9 (diff)
Remove KeyValue objectHEADmaster
Diffstat (limited to 'src/Parser/ParserInterface.php')
-rw-r--r--src/Parser/ParserInterface.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Parser/ParserInterface.php b/src/Parser/ParserInterface.php
index f67ffb5..4e63b33 100644
--- a/src/Parser/ParserInterface.php
+++ b/src/Parser/ParserInterface.php
@@ -8,8 +8,6 @@ declare(strict_types=1);
namespace NeonXP\Dotenv\Parser;
-use NeonXP\Dotenv\Types\KeyValue;
-
/**
* Interface ParserInterface
* @package NeonXP\Dotenv\Parser
@@ -18,7 +16,7 @@ interface ParserInterface
{
/**
* @param string $line
- * @return KeyValue
+ * @return array
*/
- public function parseLine(string $line): KeyValue;
+ public function parseLine(string $line): array;
} \ No newline at end of file