for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GoetasWebservices\XML\XSDReader\Schema;
trait NamedItemTrait
{
/**
* @var string
*/
protected $name;
* @return string
public function getName()
return $this->name;
}
* @param string $name
*
* @return $this
public function setName($name)
$this->name = $name;
return $this;