| Total Complexity | 3 |
| Total Lines | 22 |
| 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 readonly string $field1; |
||
| 18 | |||
| 19 | /** @ORM\Column(type="string", name="field_2", nullable=true) */ |
||
| 20 | private readonly string $field2; |
||
| 21 | |||
| 22 | public function __construct() |
||
| 23 | { |
||
| 24 | $this->field1 = ''; |
||
|
|
|||
| 25 | $this->field2 = ''; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getField1(): string |
||
| 29 | { |
||
| 30 | return $this->field1; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getField2(): string |
||
| 36 | } |
||
| 37 | } |
||
| 38 |