Completed
Push — master ( 84905b...948707 )
by Jean-Christophe
01:52
created

CRUDFiles   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getViewDataIndex() 0 3 1
A getViewShowTable() 0 3 1
A getViewEditTable() 0 3 1
1
<?php
2
3
namespace Ubiquity\controllers\crud;
4
5
class CRUDFiles {
6
	private $viewBase="@framework/crud";
7
	
8
	public function getViewDataIndex() {
9
		return $this->viewBase."/index.html";
10
	}
11
	
12
	public function getViewShowTable() {
13
		return $this->viewBase."/showTable.html";
14
	}
15
	
16
	public function getViewEditTable() {
17
		return $this->viewBase."/editTable.html";
18
	}
19
}
20
21