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 $name
*/
trait NameAccessorTrait
{
* Set name
*
* @param string $name
* @return $this
public function setName($name)
$this->name = $name;
return $this;
}
* Get name
* @return string
public function getName()
return $this->name;