Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
vonage
/
client-core
/
src
/
Secrets
Location:
/home/zoteqbgb/public_html/vendor/vonage/client-core/src/Secrets
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Secret.php
<?php namespace Vonage\Secrets; use DateTimeImmutable; use DateTimeInterface; use Vonage\Entity\Hydrator\ArrayHydrateInterface; class Secret implements ArrayHydrateInterface { /** * @var DateTimeImmutable */ protected $createdAt; /** * @var string */ protected $id; public function __construct(array $data = []) { if (!empty($data)) { $this->fromArray($data); } } public function getId(): string { return $this->id; } public function getCreatedAt(): DateTimeInterface { return $this->createdAt; } public function fromArray(array $data) { $this->id = $data['id']; $this->createdAt = new DateTimeImmutable($data['created_at']); } public function toArray(): array { return [ 'id' => $this->id, 'created_at' => $this->createdAt->format('Y-m-d\TH:i:s\Z'), ]; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Client.php
1,214 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
ClientFactory.php
762 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
Secret.php
963 bytes
0644
2023-10-02 14:26
âï¸
ðï¸
Rename
Chang
Apply