| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | abstract class PBES1PKCS12AlgorithmIdentifier extends PBES1AlgorithmIdentifier |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Constructor. |
||
| 14 | * |
||
| 15 | * @param string $salt Salt |
||
| 16 | * @param int $iteration_count Iteration count |
||
| 17 | * |
||
| 18 | * @throws \UnexpectedValueException |
||
| 19 | */ |
||
| 20 | 4 | public function __construct(string $salt, int $iteration_count) |
|
| 25 |