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

HtmlCard::addReveal()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 5

Duplication

Lines 7
Ratio 100 %

Importance

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