ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/libraries/nexmo/vendor/nexmo/client/src/Account/ |
<?php namespace Nexmo\Account; use ArrayAccess; use Nexmo\Client\Exception\Exception; use Nexmo\Network; use Nexmo\Entity\EntityInterface; use Nexmo\Entity\JsonSerializableInterface; use Nexmo\Entity\JsonResponseTrait; use Nexmo\Entity\JsonSerializableTrait; use Nexmo\Entity\NoRequestResponseTrait; use Nexmo\Entity\JsonUnserializableInterface; abstract class Price implements EntityInterface, JsonSerializableInterface, JsonUnserializableInterface, ArrayAccess { use JsonSerializableTrait; use NoRequestResponseTrait; use JsonResponseTrait; protected $data = []; public function getCountryCode() { return $this['country_code']; } public function getCountryDisplayName() { return $this['country_display_name']; } public function getCountryName() { return $this['country_name']; } public function getDialingPrefix() { return $this['dialing_prefix']; } public function getDefaultPrice() { return $this['default_price']; } public function getCurrency() { return $this['currency']; } public function getNetworks() { return $this['networks']; } public function getPriceForNetwork($networkCode) { $networks = $this->getNetworks(); if (isset($networks[$networkCode])) { return $networks[$networkCode]->{$this->priceMethod}(); } return $this->getDefaultPrice(); } 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; } // Create objects for all the nested networks too $networks = []; foreach ($json['networks'] as $n){ $network = new Network($n['networkCode'], $n['networkName']); $network->jsonUnserialize($n); $networks[$network->getCode()] = $network; } $data['networks'] = $networks; $this->data = $data; } 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('Price is read only'); } public function offsetUnset($offset) { throw new Exception('Price is read only'); } }