From 8ea647570b87adda400e5a3ce6c91f4b51327a0d Mon Sep 17 00:00:00 2001 From: Александр Кирюхин Date: Fri, 19 Jan 2018 19:03:26 +0300 Subject: Remove KeyValue object --- src/Compiler/CompilerInterface.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/Compiler/CompilerInterface.php') diff --git a/src/Compiler/CompilerInterface.php b/src/Compiler/CompilerInterface.php index 15b6823..22daad7 100644 --- a/src/Compiler/CompilerInterface.php +++ b/src/Compiler/CompilerInterface.php @@ -8,8 +8,6 @@ declare(strict_types=1); namespace NeonXP\Dotenv\Compiler; -use NeonXP\Dotenv\Types\KeyValue; - /** * Interface CompilerInterface * @package NeonXP\Dotenv\Compiler @@ -17,13 +15,13 @@ use NeonXP\Dotenv\Types\KeyValue; interface CompilerInterface { /** - * @param KeyValue[] $collection + * @param array[] $collection */ public function setRawCollection(array $collection): void; /** - * @param KeyValue $keyValue - * @return KeyValue + * @param array $array + * @return array */ - public function compileKeyValue(KeyValue $keyValue): KeyValue; + public function compile(array $array): array; } \ No newline at end of file -- cgit v1.2.3