| Total Complexity | 5 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class TranslationMigration implements TranslationMigrationInterface |
||
| 10 | { |
||
| 11 | protected ?int $id = null; |
||
| 12 | |||
| 13 | protected ?string $number = null; |
||
| 14 | |||
| 15 | protected ?DateTime $createdAt = null; |
||
| 16 | |||
| 17 | public function getId(): ?int |
||
| 18 | { |
||
| 19 | return $this->id; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getNumber(): ?string |
||
| 25 | } |
||
| 26 | |||
| 27 | public function setNumber(?string $number): void |
||
| 28 | { |
||
| 29 | $this->number = $number; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getCreatedAt(): ?DateTime |
||
| 33 | { |
||
| 34 | return $this->createdAt; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function setCreatedAt(?DateTime $createdAt): void |
||
| 40 | } |
||
| 41 | } |
||
| 42 |