Value
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 3
dl 0
loc 7
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\WSSecurity\XML\auth;
6
7
use SimpleSAML\XML\TypedTextContentTrait;
8
use SimpleSAML\XMLSchema\Type\StringValue;
9
10
/**
11
 * Class representing WS-authorization Value.
12
 *
13
 * @package simplesamlphp/ws-security
14
 */
15
final class Value extends AbstractAuthElement
16
{
17
    use TypedTextContentTrait;
0 ignored issues
show
introduced by
The trait SimpleSAML\XML\TypedTextContentTrait requires some properties which are not provided by SimpleSAML\WSSecurity\XML\auth\Value: $localName, $namespaceURI
Loading history...
18
19
20
    /** @var string */
21
    public const TEXTCONTENT_TYPE = StringValue::class;
22
}
23