1 | <?php |
||
15 | trait HasFollowers |
||
16 | { |
||
17 | /** |
||
18 | * Get followers. |
||
19 | * |
||
20 | * @param string $for |
||
21 | * @param int $limit |
||
22 | * |
||
23 | * @return Iterator |
||
24 | */ |
||
25 | public function followers($for, $limit = 0) |
||
31 | |||
32 | /** |
||
33 | * @param array $data |
||
34 | * @param string $resourceUrl |
||
35 | * @param int $limit |
||
36 | * |
||
37 | * @return Iterator |
||
38 | */ |
||
39 | public function getFollowData($data, $resourceUrl, $limit = 0) |
||
45 | |||
46 | protected function getFollowersUrl() |
||
50 | |||
51 | protected function getFollowersFor() |
||
55 | } |
||
56 |