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