| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Data |
||
| 12 | { |
||
| 13 | private iterable $labels = []; |
||
| 14 | |||
| 15 | private iterable $data = []; |
||
| 16 | |||
| 17 | public function getLabels(): iterable |
||
| 18 | { |
||
| 19 | return $this->labels; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function setLabels(iterable $labels): self |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getData(): iterable |
||
| 32 | } |
||
| 33 | |||
| 34 | public function setData(iterable $data): self |
||
| 39 | } |
||
| 40 | } |
||
| 41 |