Merge "Title: Refactor JS/CSS page handling to be more sane"
[lhc/web/wiklou.git] / includes / import / UploadRevisionImporter.php
1 <?php
2
3 /**
4 * @since 1.31
5 */
6 interface UploadRevisionImporter {
7
8 /**
9 * @since 1.31
10 *
11 * @param ImportableUploadRevision $importableUploadRevision
12 *
13 * @return StatusValue On success, the value member contains the
14 * archive name, or an empty string if it was a new file.
15 */
16 public function import( ImportableUploadRevision $importableUploadRevision );
17
18 }