Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class CalendarChartOptions extends ChartOptions |
||
13 | { |
||
14 | use TitleTrait; |
||
15 | |||
16 | /** |
||
17 | * @var Calendar |
||
18 | */ |
||
19 | protected $calendar; |
||
20 | |||
21 | /** |
||
22 | * @var ColorAxis |
||
23 | */ |
||
24 | protected $colorAxis; |
||
25 | |||
26 | /** |
||
27 | * @var NoDataPattern |
||
28 | */ |
||
29 | protected $noDataPattern; |
||
30 | |||
31 | public function __construct() |
||
32 | { |
||
33 | parent::__construct(); |
||
34 | |||
35 | $this->calendar = new Calendar(); |
||
36 | $this->colorAxis = new ColorAxis(); |
||
37 | $this->noDataPattern = new NoDataPattern(); |
||
38 | } |
||
39 | |||
40 | public function getCalendar(): Calendar |
||
41 | { |
||
42 | return $this->calendar; |
||
43 | } |
||
44 | |||
45 | public function getColorAxis(): ColorAxis |
||
48 | } |
||
49 | |||
50 | public function getNoDataPattern(): NoDataPattern |
||
55 |