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