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

RSAKeyValueType::getExponent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign;
4
5
/**
6
 * Class representing RSAKeyValueType
7
 *
8
 *
9
 * XSD Type: RSAKeyValueType
10
 */
11
class RSAKeyValueType
12
{
13
14
    /**
15
     * @property mixed $modulus
16
     */
17
    private $modulus = null;
18
19
    /**
20
     * @property mixed $exponent
21
     */
22
    private $exponent = null;
23
24
    /**
25
     * Gets as modulus
26
     *
27
     * @return mixed
28
     */
29
    public function getModulus()
30
    {
31
        return $this->modulus;
32
    }
33
34
    /**
35
     * Sets a new modulus
36
     *
37
     * @param mixed $modulus
38
     * @return self
39
     */
40
    public function setModulus($modulus)
41
    {
42
        $this->modulus = $modulus;
43
        return $this;
44
    }
45
46
    /**
47
     * Gets as exponent
48
     *
49
     * @return mixed
50
     */
51
    public function getExponent()
52
    {
53
        return $this->exponent;
54
    }
55
56
    /**
57
     * Sets a new exponent
58
     *
59
     * @param mixed $exponent
60
     * @return self
61
     */
62
    public function setExponent($exponent)
63
    {
64
        $this->exponent = $exponent;
65
        return $this;
66
    }
67
68
69
}
70
71