Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | trait MaterialTrait |
||
9 | { |
||
10 | /** |
||
11 | * @var Chart |
||
12 | */ |
||
13 | protected $chart; |
||
14 | |||
15 | /** |
||
16 | * @var array<mixed> |
||
17 | */ |
||
18 | protected $axes; |
||
19 | |||
20 | /** |
||
21 | * @return Chart |
||
22 | */ |
||
23 | public function getChart() |
||
24 | { |
||
25 | return $this->chart; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param array<mixed> $axes |
||
30 | * |
||
31 | * @return $this |
||
32 | */ |
||
33 | public function setAxes(array $axes) |
||
38 | } |
||
39 | } |
||
40 |