Completed
Push — master ( 69e9f4...3042e6 )
by Jean-Christophe
04:01
created

HtmlRail   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Ajax\semantic\html\elements;
4
5
use Ajax\semantic\html\base\HtmlSemDoubleElement;
6
7
/**
8
 *
9
 * @author jc
10
 *
11
 */
12
class HtmlRail extends HtmlSemDoubleElement {
13
14
	public function __construct($identifier, $content=NULL) {
15
		parent::__construct($identifier, "div", "ui rail", $content);
16
	}
17
}