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

HtmlCard::createContent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 5

Duplication

Lines 6
Ratio 100 %

Importance

Changes 0
Metric Value
dl 6
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 5
nc 1
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
}