Passed
Pull Request — master (#43)
by Tim
02:02
created

AsymmetricKey::readFile()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
eloc 7
c 0
b 0
f 0
nc 2
nop 1
dl 0
loc 12
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSecurity\Key;
6
7
/**
8
 * A class representing an asymmetric key.
9
 *
10
 * This class can be extended to implement public or private keys.
11
 *
12
 * @package simplesamlphp/xml-security
13
 */
14
abstract class AsymmetricKey extends AbstractKey
15
{
16
}
17