Base::getPluginId()   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 0
1
<?php
2
namespace Ext\Plugin;
3
4
class Base extends \Ext\Base
5
{
6
7
	public function setPluginId($pluginId){
8
		return $this->setProperty('pluginId',$pluginId);
9
	}
10
11
	public function getPluginId(){
12
		return $this->getProperty('pluginId');
13
	}
14
15
16
}