1 | <?php declare(strict_types = 1); |
||
7 | abstract class BaseRequest extends ApiBaseRequest implements Request |
||
8 | { |
||
9 | const BASE_URL = 'https://stream.twitter.com/1.1'; |
||
10 | |||
11 | /** |
||
12 | * @param string $level |
||
13 | * @return $this |
||
14 | */ |
||
15 | public function filterLevel(string $level) |
||
21 | |||
22 | /** |
||
23 | * @param string[] $languages |
||
24 | * @return $this |
||
25 | */ |
||
26 | public function language(array $languages) |
||
32 | } |
||
33 |