| 1 | <?php |
||
| 13 | abstract class AbstractApi |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var OneSignal |
||
| 17 | */ |
||
| 18 | protected $client; |
||
| 19 | |||
| 20 | public function __construct(OneSignal $client) |
||
| 24 | |||
| 25 | protected function createRequest(string $method, string $uri): RequestInterface |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param mixed $value |
||
| 35 | */ |
||
| 36 | protected function createStream($value, int $flags = null, int $maxDepth = 512): StreamInterface |
||
| 48 | } |
||
| 49 |