Server::setIdParam()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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
}