Bitpay\Application::addOrg PHP Метод

addOrg() публичный Метод

Add org to stack
public addOrg ( OrgInterface $org ) : bitpay\ApplicationInterface
$org OrgInterface
Результат bitpay\ApplicationInterface
    public function addOrg(OrgInterface $org)
    {
        if (!empty($org)) {
            $this->orgs[] = $org;
        }
        return $this;
    }