for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ComradeReader\Test\Helpers;
/**
* @codeCoverageIgnore
* @package ComradeReader\Test\Helpers
*/
class SimpleTestEntity
{
/** @var string $id */
private $id;
/** @var string $colorName */
private $colorName;
* @return string
public function getId()
return $this->id;
}
public function getColorName()
return $this->colorName;
* @param string $colorName
* @return SimpleTestEntity
public function setColorName($colorName)
$this->colorName = $colorName;
return $this;
* @param string $id
public function setId($id)
$this->id = $id;