for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MauroMoreno\DataFactory\Entity;
/**
* Class Error
*
* @package MauroMoreno\DataFactory\Entity
*/
class Error
{
* @var string
private $value = '';
* @return string
public function getValue(): string
return $this->value;
}
* @param string $value
* @return $this
public function setValue(string $value)
$this->value = trim($value);
return $this;