From 8ea647570b87adda400e5a3ce6c91f4b51327a0d Mon Sep 17 00:00:00 2001 From: Александр Кирюхин Date: Fri, 19 Jan 2018 19:03:26 +0300 Subject: Remove KeyValue object --- src/Parser/ParserInterface.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/Parser/ParserInterface.php') 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 -- cgit v1.2.3