for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiapi\endpoints\Module\InOutControl;
/**
* Trait ExamplesAwareBuilderTrait
*
* @author Dmytro Naumenko <[email protected]>
*/
trait ExamplesAwareBuilderTrait
{
* @var array
protected $examples;
public function withExamples(array $examples)
$this->examples = $examples;
return $this;
}