Merge "Move $.byteLength and $.trimByteLength to new module 'mediawiki.String'"
[lhc/web/wiklou.git] / includes / import / OldRevisionImporter.php
1 <?php
2
3 /**
4 * @since 1.31
5 */
6 interface OldRevisionImporter {
7
8 /**
9 * @since 1.31
10 *
11 * @param ImportableOldRevision $importableRevision
12 *
13 * @return bool Success
14 */
15 public function import( ImportableOldRevision $importableRevision );
16
17 }