diff options
Diffstat (limited to 'src/Types/KeyValue.php')
-rw-r--r-- | src/Types/KeyValue.php | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/Types/KeyValue.php b/src/Types/KeyValue.php deleted file mode 100644 index 54b0360..0000000 --- a/src/Types/KeyValue.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php -declare(strict_types=1); - -/** - * @author: Alexander Kiryukhin <alexander@kiryukhin.su> - * @license: MIT - */ - -namespace NeonXP\Dotenv\Types; - -/** - * Class KeyValue - * @package NeonXP\Dotenv\Types - */ -class KeyValue -{ - /** - * @var string - */ - private $key; - - /** - * @var string - */ - private $value; - - /** - * KeyValue constructor. - * @param string $key - * @param mixed $value - */ - public function __construct(string $key, $value) - { - $this->key = $key; - $this->value = $value; - } - - /** - * @return string - */ - public function getKey(): string - { - return $this->key; - } - - /** - * @return mixed - */ - public function getValue() - { - return $this->value; - } -}
\ No newline at end of file |