Date   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setFormat() 0 3 1
A getFormat() 0 3 1
1
<?php
2
namespace Ext\Grid\Column;
3
4
5
class Date extends Column
6
{
7
8
	public function setFormat($format){
9
		return $this->setProperty('format',$format);
10
	}
11
12
	public function getFormat(){
13
		return $this->getProperty('format');
14
	}
15
16
17
}