Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class Bubble |
||
13 | { |
||
14 | use OpacityTrait; |
||
15 | |||
16 | use StrokeTrait; |
||
17 | |||
18 | /** |
||
19 | * @var AdvancedTextStyle |
||
20 | */ |
||
21 | protected $textStyle; |
||
22 | |||
23 | public function __construct() |
||
24 | { |
||
25 | $this->textStyle = new AdvancedTextStyle(); |
||
26 | } |
||
27 | |||
28 | public function getTextStyle(): AdvancedTextStyle |
||
31 | } |
||
32 | } |
||
33 |