for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Nable\Ncentral\Type;
class ConfigValue
{
/**
* @var string
*/
private $dataType;
private $description;
private $key;
private $value;
* @return string
public function getDataType()
return $this->dataType;
}
* @param string $dataType
* @return ConfigValue
public function withDataType($dataType)
$new = clone $this;
$new->dataType = $dataType;
return $new;
public function getDescription()
return $this->description;
* @param string $description
public function withDescription($description)
$new->description = $description;
public function getKey()
return $this->key;
* @param string $key
public function withKey($key)
$new->key = $key;
public function getValue()
return $this->value;
* @param string $value
public function withValue($value)
$new->value = $value;