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

Tabs::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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