Date   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

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