RequireClientCertificate
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 5
dl 0
loc 13
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\WSSecurity\XML\mssp;
6
7
use SimpleSAML\WSSecurity\Constants as C;
8
use SimpleSAML\WSSecurity\XML\sp_200507\AbstractQNameAssertionType;
9
use SimpleSAML\XML\SchemaValidatableElementInterface;
10
use SimpleSAML\XML\SchemaValidatableElementTrait;
11
12
/**
13
 * An RequireClientCertificate element
14
 *
15
 * @package simplesamlphp/ws-security
16
 */
17
final class RequireClientCertificate extends AbstractQNameAssertionType implements SchemaValidatableElementInterface
18
{
19
    use SchemaValidatableElementTrait;
0 ignored issues
show
introduced by
The trait SimpleSAML\XML\SchemaValidatableElementTrait requires some properties which are not provided by SimpleSAML\WSSecurity\XM...equireClientCertificate: $message, $line
Loading history...
20
21
22
    /** @var string */
23
    public const NS = C::NS_MSSP;
24
25
    /** @var string */
26
    public const NS_PREFIX = 'mssp';
27
28
    /** @var string */
29
    public const SCHEMA = 'resources/schemas/mssp.xsd';
30
}
31