1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
interface Services_Twilio_Auth_Grant { /** * Returns the grant type * * @return string type of the grant */ public function getGrantKey();
/** * Returns the grant data * * @return array data of the grant */ public function getPayload(); }
|