Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
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 | } |