Bitpay\Application::addOrg PHP Method

addOrg() public method

Add org to stack
public addOrg ( OrgInterface $org ) : bitpay\ApplicationInterface
$org OrgInterface
return bitpay\ApplicationInterface
    public function addOrg(OrgInterface $org)
    {
        if (!empty($org)) {
            $this->orgs[] = $org;
        }
        return $this;
    }