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
3namespace Flow\Import;
4
5interface IImportTopic extends IImportPost {
6    /**
7     * @return IImportSummary|null The summary, if any, for a topic
8     */
9    public function getTopicSummary();
10
11    /**
12     * @return string The subtype to use when logging topic imports
13     *  to Special:Log.  It will appear in the log as "import/$logType"
14     */
15    public function getLogType();
16
17    /**
18     * @return string[] A k/v map of strings containing additional
19     *  parameters to be stored with the log about importing this topic.
20     */
21    public function getLogParameters();
22}