X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fmodules%2Fmigrate%2Fsrc%2FPlugin%2FMigrationInterface.php;h=0ac9e335d3a38724b918e111a707ed97dce7cc56;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=3165d81b11cf96ec7110a8320b55d4b822711a14;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/modules/migrate/src/Plugin/MigrationInterface.php b/web/core/modules/migrate/src/Plugin/MigrationInterface.php index 3165d81b1..0ac9e335d 100644 --- a/web/core/modules/migrate/src/Plugin/MigrationInterface.php +++ b/web/core/modules/migrate/src/Plugin/MigrationInterface.php @@ -153,7 +153,7 @@ interface MigrationInterface extends PluginInspectionInterface, DerivativeInspec /** * Set the current migration status. * - * @param int $result + * @param int $status * One of the STATUS_* constants. */ public function setStatus($status); @@ -322,4 +322,11 @@ interface MigrationInterface extends PluginInspectionInterface, DerivativeInspec */ public function getMigrationTags(); + /** + * Indicates if the migration is auditable. + * + * @return bool + */ + public function isAuditable(); + }