Proxy   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 9
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 5 1
1
<?php
2
/*
3
    TODO: implement simplexml access methods to the proxy
4
    probably needs to extend ArrayObject in some way to do this properly
5
 */
6
namespace arc\html;
7
8
class Proxy extends \arc\xml\Proxy {
9
10 2
    public function __toString() {
11 2
        $dom = dom_import_simplexml($this->target);
12 2
        $result = ''.$dom->ownerDocument->saveHTML($dom);
13 2
        return $result;
14
    }
15
16
}
17