Boolean   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setFalseText() 0 3 1
A getFalseText() 0 3 1
A setTrueText() 0 3 1
A getTrueText() 0 3 1
1
<?php
2
namespace Ext\Grid\Column;
3
4
5
class Boolean extends Column
6
{
7
	public function setFalseText($falseText){
8
		return $this->setProperty('falseText',$falseText);
9
	}
10
11
	public function getFalseText(){
12
		return $this->getProperty('falseText');
13
	}
14
15
16
	public function setTrueText($trueText){
17
		return $this->setProperty('trueText',$trueText);
18
	}
19
20
	public function getTrueText(){
21
		return $this->getProperty('trueText');
22
	}
23
24
25
}