diff options
author | Александр Кирюхин <alexander@kiryukhin.su> | 2018-01-19 19:03:26 +0300 |
---|---|---|
committer | Александр Кирюхин <alexander@kiryukhin.su> | 2018-01-19 19:03:26 +0300 |
commit | 8ea647570b87adda400e5a3ce6c91f4b51327a0d (patch) | |
tree | 7c5d328b41e64c3e78ac89c9674747346233c87a /src/Compiler/CompilerInterface.php | |
parent | 47c9d580c6e799e72b6a70b22dd5107790b1d3e9 (diff) |
Diffstat (limited to 'src/Compiler/CompilerInterface.php')
-rw-r--r-- | src/Compiler/CompilerInterface.php | 10 |
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 |