Completed
Push — master ( fcfed5...b7a7dd )
by Jean-Christophe
03:28
created

HtmlCard::getPart()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 6
nc 3
nop 2
1
<?php
2
3
namespace Ajax\semantic\html\views;
4
5
use Ajax\semantic\html\content\view\HtmlViewItem;
6
7
class HtmlCard extends HtmlViewItem {
8
9
	public function __construct($identifier) {
10
		parent::__construct($identifier, "ui card", array ());
11
	}
12
}