Passed
Push — master ( c653a4...a7d880 )
by Jean-Christophe
02:17
created

Tabs   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace Ajax\ui\components;
3
4
use Ajax\JsUtils;
5
use Ajax\common\components\SimpleComponent;
6
7
/**
8
 * Composant JQuery UI Tabs
9
 *
10
 * @author jc
11
 * @version 1.001
12
 */
13
class Tabs extends SimpleComponent {
14
15
	public function __construct(JsUtils $js) {
16
		parent::__construct($js);
17
		$this->uiName = "tabs";
18
	}
19
}
20