* @license: MIT */ namespace 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, mixed $value) { $this->key = $key; $this->value = $value; } /** * @return string */ public function getKey(): string { return $this->key; } /** * @return mixed */ public function getValue(): mixed { return $this->value; } }