| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class SerieTranslation implements TranslationInterface |
||
| 15 | { |
||
| 16 | use TranslationTrait; |
||
| 17 | use DescriptionTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @ORM\Id |
||
| 21 | * @ORM\Column(type="integer") |
||
| 22 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 23 | */ |
||
| 24 | private ?int $id = null; |
||
| 25 | |||
| 26 | |||
| 27 | /** |
||
| 28 | * @return int|null |
||
| 29 | */ |
||
| 30 | public function getId(): ?int |
||
| 35 |