for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Locastic\SymfonyTranslationBundle\Model;
use DateTime;
class TranslationMigration implements TranslationMigrationInterface
{
protected ?int $id = null;
protected ?string $number = null;
protected ?DateTime $createdAt = null;
public function getId(): ?int
return $this->id;
}
public function getNumber(): ?string
return $this->number;
public function setNumber(?string $number): void
$this->number = $number;
public function getCreatedAt(): ?DateTime
return $this->createdAt;
public function setCreatedAt(?DateTime $createdAt): void
$this->createdAt = $createdAt;