xsENTITY   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 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