1 | <?php |
||
5 | abstract class Request |
||
6 | { |
||
7 | /** |
||
8 | * The type according to the Pushbullet API |
||
9 | * |
||
10 | * @var string $type |
||
11 | */ |
||
12 | |||
13 | protected $type; |
||
14 | |||
15 | /** |
||
16 | * The parameters to pass to the API |
||
17 | * |
||
18 | * @var array $parameters |
||
19 | */ |
||
20 | |||
21 | protected $parameters = []; |
||
22 | |||
23 | 14 | public function request() |
|
27 | } |
||
28 |