Passed
Push — master ( c6a4f9...858274 )
by Tim
02:18
created

EncryptionMethod::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\SAML2\XML\md;
6
7
use SimpleSAML\SAML2\Constants;
8
use SimpleSAML\XMLSecurity\XML\xenc\AbstractEncryptionMethod;
9
10
/**
11
 * A class implementing the md:EncryptionMethod element.
12
 *
13
 * @package simplesamlphp/saml2
14
 */
15
class EncryptionMethod extends AbstractEncryptionMethod
16
{
17
    /** @var string */
18
    public const NS = Constants::NS_MD;
19
20
    /** @var string */
21
    public const NS_PREFIX = 'md';
22
}
23