| 1 | <?php |
||
| 7 | class UnknownMigrationInformation implements MigrationInformation |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | protected $id; |
||
| 11 | |||
| 12 | public function __construct(string $id) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | public function getName(): string |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function getId(): string |
||
| 32 | } |
||
| 33 |