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