1 | <?php |
||
7 | class TwitterSymbol extends TwitterEntity |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $text; |
||
13 | |||
14 | /** |
||
15 | * Constructor. |
||
16 | */ |
||
17 | 9 | public function __construct() |
|
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | 9 | public function getText() |
|
28 | |||
29 | /** |
||
30 | * Static constructor. |
||
31 | * |
||
32 | * @param string $text |
||
33 | * @param TwitterEntityIndices $indices |
||
34 | * |
||
35 | * @return TwitterSymbol |
||
36 | */ |
||
37 | 9 | public static function create($text, TwitterEntityIndices $indices) |
|
47 | } |
||
48 |