SimpleXMLElement
last analyzed

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 1
cts 1
cp 1
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the Ariadne Component Library.
5
 *
6
 * (c) Muze <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace arc\xml;
13
14
/**
15
 * This adds docblock information for DOMElement methods that are 
16
 * available on the \arc\xml\Proxy class.
17
 *
18
 * @method void addAttribute( string $name, string $value, string $namespace )
19
 * @method Proxy addChild( string $name, string $value, string $namespace )
20
 * @method string asXML( strinf $filename )
21
 * @method Proxy attributes( string $ns, bool $is_prefix )
22
 * @method Proxy children( string $ns, bool $is_prefix )
23
 * @method int count()
24
 * @method array getDocNamespaces( bool $recursive, bool $from_root )
25
 * @method string getName()
26
 * @method array getNamespaces( bool $recursive )
27
 * @method bool registerXPathNamespace( string $prefix, string $ns )
28
 * @method array spath( string $path )
29
 */
30
interface SimpleXMLElement {
31
32
}