diff options
Diffstat (limited to 'src/Parser/ParserInterface.php')
-rw-r--r-- | src/Parser/ParserInterface.php | 6 |
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 |