Passed
Pull Request — master (#2)
by Jaime Pérez
03:26
created

AbstractEcElement::getNamespaceURI()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSecurity\XML\ec;
6
7
use SimpleSAML\XML\AbstractXMLElement;
8
use SimpleSAML\XMLSecurity\Constants;
9
10
11
/**
12
 * Abstract class to be implemented by all the classes in this namespace
13
14
 * @package simplesamlphp/xml-security
15
 */
16
abstract class AbstractEcElement extends AbstractXMLElement
17
{
18
    /** @var string */
19
    public const NS = Constants::C14N_EXCLUSIVE_WITHOUT_COMMENTS;
20
21
    /** @var string */
22
    public const NS_PREFIX = 'ec';
23
}
24