/home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Account
NameSizeModeActions
Balance.php15190644editdlrm
Client.php94340644editdlrm
Config.php24800644editdlrm
PrefixPrice.php2550644editdlrm
Price.php35150644editdlrm
Secret.php12150644editdlrm
SecretCollection.php11300644editdlrm
SmsPrice.php1180644editdlrm
VoicePrice.php1220644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Account/SecretCollection.php (1130B)
data = [ 'secrets' => $secrets, '_links' => $links ]; } public function getSecrets() { return $this['secrets']; } public function getLinks() { return $this['_links']; } public static function fromApi($data) { $secrets = []; foreach ($data['_embedded']['secrets'] as $s) { $secrets[] = Secret::fromApi($s); } return new self($secrets, $data['_links']); } public function offsetExists($offset) { return isset($this->data[$offset]); } public function offsetGet($offset) { return $this->data[$offset]; } public function offsetSet($offset, $value) { throw new \Exception('SecretCollection::offsetSet is not implemented'); } public function offsetUnset($offset) { throw new \Exception('SecretCollection::offsetUnset is not implemented'); } }