芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/vendor/vonage/client-core/src/Account/Secret.php
data = $data; } public function getId() { return $this->data['id']; } public function getCreatedAt() { return $this->data['created_at']; } public function getLinks() { return $this->data['_links']; } /** * @throws InvalidResponseException * * @deprecated Instantiate the object directly */ public static function fromApi(array $data): self { trigger_error('Please instantiate a Vonage\Account\Secret object instead of using fromApi', E_USER_DEPRECATED); return new self($data); } public function offsetExists($offset): bool { trigger_error( "Array access for " . get_class($this) . " is deprecated, please use getter methods", E_USER_DEPRECATED ); return isset($this->data[$offset]); } public function offsetGet($offset) { trigger_error( "Array access for " . get_class($this) . " is deprecated, please use getter methods", E_USER_DEPRECATED ); return $this->data[$offset]; } /** * @throws ClientException */ public function offsetSet($offset, $value): void { throw new ClientException('Secret::offsetSet is not implemented'); } /** * @throws ClientException */ public function offsetUnset($offset): void { throw new ClientException('Secret::offsetUnset is not implemented'); } /** * @noinspection MagicMethodsValidityInspection */ public function __get($key): ?array { if ($key === 'data') { trigger_error( "Direct access to " . get_class($this) . "::data is deprecated, please use getter to toArray() methods", E_USER_DEPRECATED ); return $this->data; } return null; } }