1 | <?php |
||
7 | abstract class TwitterEntity implements TwitterSerializable |
||
8 | { |
||
9 | /** |
||
10 | * @var TwitterEntityIndices |
||
11 | */ |
||
12 | protected $indices; |
||
13 | |||
14 | /** |
||
15 | * Init |
||
16 | * |
||
17 | * @param TwitterEntityIndices $indices |
||
18 | */ |
||
19 | 54 | protected function initTwitterEntity(TwitterEntityIndices $indices = null) |
|
23 | |||
24 | /** |
||
25 | * @return TwitterEntityIndices |
||
26 | */ |
||
27 | 54 | public function getIndices() |
|
31 | } |
||
32 |