Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class BasicTooltip extends Tooltip |
||
9 | { |
||
10 | use TriggerTrait; |
||
11 | |||
12 | /** |
||
13 | * @var MediumTextStyle |
||
14 | */ |
||
15 | protected $textStyle; |
||
16 | |||
17 | 11 | public function __construct() |
|
18 | { |
||
19 | 11 | $this->textStyle = new MediumTextStyle(); |
|
20 | } |
||
21 | |||
22 | 2 | public function getTextStyle(): MediumTextStyle |
|
25 | } |
||
26 | } |
||
27 |