aboutsummaryrefslogtreecommitdiff
path: root/src/Types/KeyValue.php
diff options
context:
space:
mode:
authorАлександр Кирюхин <alexander@kiryukhin.su>2018-01-19 19:03:26 +0300
committerАлександр Кирюхин <alexander@kiryukhin.su>2018-01-19 19:03:26 +0300
commit8ea647570b87adda400e5a3ce6c91f4b51327a0d (patch)
tree7c5d328b41e64c3e78ac89c9674747346233c87a /src/Types/KeyValue.php
parent47c9d580c6e799e72b6a70b22dd5107790b1d3e9 (diff)
Remove KeyValue objectHEADmaster
Diffstat (limited to 'src/Types/KeyValue.php')
-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