NullImportReporter::onImportAborted()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace Wikibase\QueryEngine\Importer;
4
5
use Exception;
6
use Wikibase\DataModel\Entity\EntityDocument;
7
8
/**
9
 * @since 0.3
10
 * @licence GNU GPL v2+
11
 * @author Jeroen De Dauw < [email protected] >
12
 */
13
class NullImportReporter implements ImportReporter {
14
15
	public function onImportStarted() {}
16
	public function onEntityInsertStarted( EntityDocument $entity ) {}
17
	public function onEntityInsertSucceeded( EntityDocument $entity ) {}
18
	public function onEntityInsertFailed( EntityDocument $entity, Exception $ex ) {}
19
	public function onImportCompleted() {}
20
	public function onImportAborted() {}
21
22
}
23