Completed
Push — master ( 484ff8...780e48 )
by Jaime Pérez
15s queued 12s
created

EncryptedData::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
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 7
dl 0
loc 10
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSecurity\XML\xenc;
6
7
/**
8
 * Class containing encrypted data.
9
 *
10
 * Note: <xenc:EncryptionProperties> elements are not supported.
11
 *
12
 * @package simplesamlphp/xml-security
13
 */
14
class EncryptedData extends AbstractEncryptedType
15
{
16
}
17