xsENTITY::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace AlgoWeb\xsdTypes;
3
4
/**
5
 * The type xsd:ENTITY represents a reference to an unparsed entity.
6
 * The xsd:ENTITY type is most often used to include information from another location that is not in XML format, such
7
 * as graphics.  An xsd:ENTITY value must be an NCName.  An xsd:ENTITY value carries the additional constraint that it
8
 * must match the name of an unparsed entity in a document type definition (DTD) for the instance.
9
 *
10
 * @package AlgoWeb\xsdTypes
11
 */
12
class xsENTITY extends xsNCName
13
{
14
    /**
15
     * Construct.
16
     *
17
     * @param mixed $value
18
     */
19
    public function __construct($value)
20
    {
21
        parent::__construct($value);
22
    }
23
}
24