Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 5 | public function __construct( |
|
33 | $sigAlgoUsage = self::SIG_ALGO_USAGE_OSG, |
||
34 | $sigAlgo = self::SIG_ALGO_RSA, |
||
35 | $operationMode = self::OPERATION_MODE_ISO_9796_1 |
||
36 | ) { |
||
37 | 5 | $this->addDataElement($sigAlgoUsage); |
|
38 | 5 | $this->addDataElement($sigAlgo); |
|
39 | 5 | $this->addDataElement($operationMode); |
|
40 | 5 | } |
|
41 | } |
||
42 |