This is to be used within the FileImporter extension to allow adding custom loggers to this import process. Change-Id: I4a6c573fc0a69b06d696cd2afca9226fb492a9bc
18 lines
373 B
PHP
18 lines
373 B
PHP
<?php
|
|
|
|
/**
|
|
* @since 1.31
|
|
*/
|
|
interface UploadRevisionImporter {
|
|
|
|
/**
|
|
* @since 1.31
|
|
*
|
|
* @param ImportableUploadRevision $importableUploadRevision
|
|
*
|
|
* @return StatusValue On success, the value member contains the
|
|
* archive name, or an empty string if it was a new file.
|
|
*/
|
|
public function import( ImportableUploadRevision $importableUploadRevision );
|
|
|
|
}
|