Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | #[Entity] |
||
11 | class BorderData extends AbstractData |
||
12 | { |
||
13 | #[Column(type: 'string', nullable: true)] |
||
14 | private ?string $allycolor = null; |
||
15 | #[Column(type: 'string', nullable: true)] |
||
16 | private ?string $usercolor = null; |
||
17 | #[Column(type: 'string', nullable: true)] |
||
18 | private ?string $factioncolor = null; |
||
19 | |||
20 | public function getAllyColor(): ?string |
||
23 | } |
||
24 | |||
25 | public function getFactionColor(): ?string |
||
26 | { |
||
27 | return $this->factioncolor; |
||
28 | } |
||
29 | |||
30 | public function getUserColor(): ?string |
||
33 | } |
||
34 | } |
||
35 |