芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/bitpay/php-client/src/Bitpay/Application.php
users = array(); $this->orgs = array(); } /** * @inheritdoc */ public function getUsers() { return $this->users; } /** * @inheritdoc */ public function getOrgs() { return $this->orgs; } /** * Add user to stack * * @param User $user * @return Application */ public function addUser(User $user) { if (!empty($user)) { $this->users[] = $user; } return $this; } /** * Add org to stack * * @param Org $org * @return Application */ public function addOrg(Org $org) { if (!empty($org)) { $this->orgs[] = $org; } return $this; } }