Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class OutboxSubClass extends OutboxMappedSuperclass |
||
15 | { |
||
16 | /** @ORM\Column(type="string", name="field_1", nullable=true) */ |
||
17 | private string $field1; |
||
18 | |||
19 | /** @ORM\Column(type="string", name="field_2", nullable=true) */ |
||
20 | private string $field2; |
||
21 | |||
22 | public function getField1(): string |
||
23 | { |
||
24 | return $this->field1; |
||
25 | } |
||
26 | |||
27 | public function getField2(): string |
||
30 | } |
||
31 | } |
||
32 |