Extend migrator interface

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng 2022-04-08 18:33:42 +00:00
parent 5eea073824
commit 2273ddc873

View file

@ -59,6 +59,27 @@ interface IMigrator {
OutputInterface $output
): void;
/**
* Returns the unique ID
*
* @since 24.0.0
*/
public function getId(): string;
/**
* Returns the display name
*
* @since 24.0.0
*/
public function getDisplayName(): string;
/**
* Returns the description
*
* @since 24.0.0
*/
public function getDescription(): string;
/**
* Returns the version of the export format for this migrator
*