| 1 | <?php |
||
| 7 | class FileMigrationInformation implements MigrationInformation |
||
| 8 | { |
||
| 9 | /** @var \SplFileInfo */ |
||
| 10 | protected $fileInfo; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param \SplFileInfo $fileInfo |
||
| 14 | */ |
||
| 15 | public function __construct(SplFileInfo $fileInfo) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function getName(): string |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function getId(): string |
||
| 35 | |||
| 36 | public function loadMigrationFile() |
||
| 40 | } |
||
| 41 |