ItemContent::getData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1
cc 1
nc 1
nop 0
crap 1
1
<?php
2
3
namespace Wikibase\DataModel;
4
5
use Mediawiki\DataModel\Content;
6
use Wikibase\DataModel\Entity\Item;
7
8
/**
9
 * @author Addshore
10
 */
11
class ItemContent extends Content {
12
13
	public const MODEL = 'wikibase-item';
14
15
	/**
16
	 * @param Item $item
17
	 */
18 1
	public function __construct( Item $item ) {
19 1
		parent::__construct( $item, self::MODEL );
20 1
	}
21
22
	/**
23
	 * @see Content::getData
24
	 * @return Item
25
	 */
26 1
	public function getData() {
27 1
		return parent::getData();
28
	}
29
}
30