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