| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | abstract class AbstractEntity |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @Serializer\SerializedName("_") |
||
| 14 | * @Serializer\Type("string") |
||
| 15 | * "_" |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public $entityType; |
||
| 20 | |||
| 21 | public function getEntityType(): string |
||
| 22 | { |
||
| 23 | return $this->entityType; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function setEntityType(string $entityType): self |
||
| 31 | } |
||
| 32 | } |
||
| 33 |