aboutsummaryrefslogtreecommitdiff
path: root/src/Compiler/CompilerInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Compiler/CompilerInterface.php')
-rw-r--r--src/Compiler/CompilerInterface.php10
1 files changed, 4 insertions, 6 deletions
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