This is to be used within the FileImporter extension to allow adding custom loggers to this import process. Change-Id: Ib094d4829764ccc8e5bd2619fb827d701ae06d43
17 lines
248 B
PHP
17 lines
248 B
PHP
<?php
|
|
|
|
/**
|
|
* @since 1.31
|
|
*/
|
|
interface OldRevisionImporter {
|
|
|
|
/**
|
|
* @since 1.31
|
|
*
|
|
* @param ImportableOldRevision $importableRevision
|
|
*
|
|
* @return bool Success
|
|
*/
|
|
public function import( ImportableOldRevision $importableRevision );
|
|
|
|
}
|