Passed
Push — master ( 22d70f...de2862 )
by Tim
02:15
created

AbstractXencElement::getNamespacePrefix()   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\xenc;
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 AbstractXencElement extends AbstractXMLElement
16
{
17
    /** @var string */
18
    public const NS = Constants::XMLENCNS;
19
20
    /** @var string */
21
    public const NS_PREFIX = 'xenc';
22
}
23