Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class AdvancedAnimation extends Animation |
||
9 | { |
||
10 | /** |
||
11 | * Determines if the chart will animate on the initial draw. If true, the chart will start at the baseline and |
||
12 | * animate to its final state. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $startup; |
||
17 | |||
18 | /** |
||
19 | * @return $this |
||
20 | */ |
||
21 | 2 | public function setStartup(bool $startup) |
|
28 |