Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | #[Entity] |
||
11 | class SubspaceData extends AbstractData |
||
12 | { |
||
13 | #[Column(type: 'integer')] |
||
14 | private int $d1c = 0; |
||
15 | #[Column(type: 'integer')] |
||
16 | private int $d2c = 0; |
||
17 | #[Column(type: 'integer')] |
||
18 | private int $d3c = 0; |
||
19 | #[Column(type: 'integer')] |
||
20 | private int $d4c = 0; |
||
21 | |||
22 | public function getDirection1Count(): int |
||
25 | } |
||
26 | |||
27 | public function getDirection2Count(): int |
||
30 | } |
||
31 | |||
32 | public function getDirection3Count(): int |
||
33 | { |
||
34 | return $this->d3c; |
||
35 | } |
||
36 | |||
37 | public function getDirection4Count(): int |
||
40 | } |
||
41 | } |
||
42 |