for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace steevanb\EntityUtils\Entity\Accessor;
/**
* This trait need a property named $description
*/
trait DescriptionAccessorTrait
{
* @param string $description
* @return $this
public function setDescription($description)
$this->description = $description;
return $this;
}
* @return string
public function getDescription()
return $this->description;