for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiapi\endpoints\Module\NamedEndpoint;
trait NamedEndpointBuilderTrait
{
/**
* @var string
*/
protected $name = null;
public function name(string $name)
$this->name = $name;
return $this;
}