Passed
Push — revert-interface-change ( ccb51e...f9a91e )
by Jakob
06:03 queued 01:30
created

HashArrayWithoutDuplicates   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getObjectType() 0 3 1
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