Intraface_Config   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
ccs 0
cts 8
cp 0
wmc 2
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __get() 0 4 1
A __set() 0 4 1
1
<?php
2
class Intraface_Config
3
{
4
    function __get($var)
5
    {
6
        return $this->{$var};
7
    }
8
9
    function __set($var, $value)
10
    {
11
        $this->{$var} = $value;
12
    }
13
}
14