Proxy   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setReader() 0 3 1
A getReader() 0 3 1
1
<?php
2
namespace Ext\Data\Proxy;
3
4
5
use Ext\Base;
6
use Ext\Data\Reader\Reader;
7
8
class Proxy extends Base
9
{
10
    public function setReader(Reader $reader){
11
    	return $this->setProperty('reader',$reader);
12
    }
13
14
    public function getReader(){
15
    	return $this->getProperty('reader');
16
    }
17
18
}