Passed
Pull Request — master (#2)
by Tim
03:00 queued 51s
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
 * Abstract class to be implemented by all the classes in this namespace
12
 *
13
 * @package simplesamlphp/xml-security
14
 */
15
abstract class AbstractEcElement extends AbstractXMLElement
16
{
17
    /** @var string */
18
    public const NS = Constants::C14N_EXCLUSIVE_WITHOUT_COMMENTS;
19
20
    /** @var string */
21
    public const NS_PREFIX = 'ec';
22
}
23