aboutsummaryrefslogtreecommitdiff
path: root/src/Types
diff options
context:
space:
mode:
Diffstat (limited to 'src/Types')
-rw-r--r--src/Types/KeyValue.php53
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