/home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src
NameSizeModeActions
Account/-0755rm
Application/-0755rm
Call/-0755rm
Client/-0755rm
Conversations/-0755rm
Conversion/-0755rm
Entity/-0755rm
Insights/-0755rm
Message/-0755rm
Network/-0755rm
Numbers/-0755rm
Redact/-0755rm
Response/-0755rm
User/-0755rm
Verify/-0755rm
Voice/-0755rm
ApiErrorHandler.php12070644editdlrm
Client.php175050644editdlrm
InvalidResponseException.php790644editdlrm
Network.php22800644editdlrm
Response.php29220644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Network.php (2280B)
data['network_code'] = $networkCode; $this->data['network_name'] = $networkName; } public function getCode() { return $this['network_code']; } public function getName() { return $this['network_name']; } public function getOutboundSmsPrice() { if (isset($this['sms_price'])) { return $this['sms_price']; } return $this['price']; } public function getOutboundVoicePrice() { if (isset($this['voice_price'])) { return $this['voice_price']; } return $this['price']; } public function getPrefixPrice() { return $this['mt_price']; } public function getCurrency() { return $this['currency']; } public function jsonUnserialize(array $json) { // Convert CamelCase to snake_case as that's how we use array access in every other object $data = []; foreach ($json as $k => $v) { $k = ltrim(strtolower(preg_replace('/[A-Z]([A-Z](?![a-z]))*/', '_$0', $k)), '_'); $data[$k] = $v; } $this->data = $data; } public function jsonSerialize() { return $this->data; } 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('Network is read only'); } public function offsetUnset($offset) { throw new Exception('Network is read only'); } }