| 1 | <?php |
||
| 8 | class Retrieve implements RequestInterface |
||
| 9 | { |
||
| 10 | protected $token; |
||
| 11 | |||
| 12 | public function __construct($token) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function getMethod() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function getPath() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function getData() |
||
| 44 | } |
||
| 45 |