Completed
Push — master ( 8e06a1...b0dbe4 )
by Jaime Pérez
05:41
created

NameID::__construct()   B

Complexity

Conditions 6
Paths 17

Size

Total Lines 24
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 6
eloc 12
nc 17
nop 1
dl 0
loc 24
rs 8.5125
c 0
b 0
f 0
1
<?php
2
3
namespace SAML2\XML\saml;
4
5
6
/**
7
 * Class representing the saml:NameID element.
8
 *
9
 * @author Jaime Pérez Crespo, UNINETT AS <[email protected]>
10
 * @package SimpleSAMLphp
11
 */
12
class NameID extends NameIDType
13
{
14
15
    /**
16
     * Set the name of this XML element to "saml:NameID"
17
     *
18
     * @var string
19
     */
20
    protected $nodeName = 'saml:NameID';
21
}
22