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

HtmlCard::addButtons()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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