summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Importer/ContentIterator.php
blob: c0efb3c193e40995d678fdd70e5f64f2fa3e00fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php

namespace SMW\Importer;

use IteratorAggregate;

/**
 * @license GNU GPL v2+
 * @since 2.5
 *
 * @author mwjames
 */
interface ContentIterator extends IteratorAggregate {

	/**
	 * @since 2.5
	 *
	 * @return string
	 */
	public function getDescription();

	/**
	 * @since 2.5
	 *
	 * @return array
	 */
	public function getErrors();

}