Completed
Push — ws-security ( defbc5...87c9bd )
by Asmir
86:42 queued 56:41
created

KeyIdentifierType::setValueType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\Secext;
4
5
/**
6
 * Class representing KeyIdentifierType
7
 *
8
 * A security token key identifier
9
 * XSD Type: KeyIdentifierType
10
 */
11
class KeyIdentifierType extends EncodedStringType
12
{
13
14
    /**
15
     * @property string $valueType
16
     */
17
    private $valueType = null;
18
19
    /**
20
     * Gets as valueType
21
     *
22
     * @return string
23
     */
24
    public function getValueType()
25
    {
26
        return $this->valueType;
27
    }
28
29
    /**
30
     * Sets a new valueType
31
     *
32
     * @param string $valueType
33
     * @return self
34
     */
35
    public function setValueType($valueType)
36
    {
37
        $this->valueType = $valueType;
38
        return $this;
39
    }
40
41
42
}
43
44