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 | namespace Flow\Import; |
| 4 | |
| 5 | interface IObjectRevision extends IImportObject { |
| 6 | /** |
| 7 | * @return string Wikitext |
| 8 | */ |
| 9 | public function getText(); |
| 10 | |
| 11 | /** |
| 12 | * @return string Timestamp compatible with wfTimestamp() |
| 13 | */ |
| 14 | public function getTimestamp(); |
| 15 | |
| 16 | /** |
| 17 | * @return string The name of the user who created this revision. |
| 18 | */ |
| 19 | public function getAuthor(); |
| 20 | } |