Passed
Push — micro-opti-entityid-stuffz ( ca1ae8...81f418 )
by Leszek
03:49
created

HashArrayWithoutDuplicates::getObjectType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Wikibase\DataModel\Fixtures;
4
5
use Hashable;
6
use Wikibase\DataModel\HashArray;
7
8
/**
9
 * @license GPL-2.0+
10
 * @author Jeroen De Dauw < [email protected] >
11
 */
12
class HashArrayWithoutDuplicates extends HashArray {
13
14
	public function getObjectType() {
15
		return Hashable::class;
16
	}
17
18
}
19