Completed
Push — master ( 5f2e51...f2779d )
by Jean-Christophe
03:46
created

DataElement   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 10
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getHtmlComponent() 0 3 1
1
<?php
2
3
namespace Ajax\semantic\widgets\dataelement;
4
5
use Ajax\common\Widget;
6
7
/**
8
 * DataElement widget for displaying an instance of model
9
 * @version 1.0
10
 * @author jc
11
 * @since 2.2
12
 *
13
 */
14
class DataElement extends Widget {
15
16
	public function __construct($identifier, $model, $modelInstance=NULL) {
17
		parent::__construct($identifier, $model, $modelInstance=NULL);
18
	}
19
20
	public function getHtmlComponent() {
21
		// TODO Auto-generated method stub
22
	}
23
}