From 8ea647570b87adda400e5a3ce6c91f4b51327a0d Mon Sep 17 00:00:00 2001 From: Александр Кирюхин Date: Fri, 19 Jan 2018 19:03:26 +0300 Subject: Remove KeyValue object --- src/Types/KeyValue.php | 53 -------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/Types/KeyValue.php (limited to 'src/Types/KeyValue.php') 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 @@ - - * @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 -- cgit v1.2.3