Server   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 setIdParam() 0 3 1
A getIdParam() 0 3 1
A setUrl() 0 3 1
A getUrl() 0 3 1
1
<?php
2
namespace Ext\Data\Proxy;
3
4
5
abstract class Server extends Proxy
6
{
7
	public function setIdParam($idParam){
8
		return $this->setProperty('idParam',$idParam);
9
	}
10
11
	public function getIdParam(){
12
		return $this->getProperty('idParam');
13
	}
14
15
16
	public function setUrl($url){
17
		return $this->setProperty('url',$url);
18
	}
19
	
20
	public function getUrl(){
21
		return $this->getProperty('url');
22
	}
23
	
24
	
25
}