14
14
* @method string|null getType()
15
15
* @method string|null getUserLabel()
16
16
* @method string|null getValue()
17
+ * @method string|null getDevice()
18
+ * @method string|null getSalt()
19
+ * @method int|null getHashIterations()
20
+ * @method string|null getAlgorithm()
21
+ * @method int|null getCounter()
22
+ * @method int|null getDigits()
23
+ * @method int|null getPeriod()
17
24
* @method self withCreatedDate(?int $createdDate)
18
25
* @method self withCredentialData(?string $credentialData)
19
26
* @method self withId(?string $id)
23
30
* @method self withType(?string $type)
24
31
* @method self withUserLabel(?string $userLabel)
25
32
* @method self withValue(?string $value)
33
+ * @method self withDevice(?string $device)
34
+ * @method self withSalt(?string $salt)
35
+ * @method self withHashIterations(?int $value)
36
+ * @method self withAlgorithm(?string $value)
37
+ * @method self withCounter(?string $counter)
38
+ * @method self withDigits(?string $digits)
39
+ * @method self withPeriod(?string $period)
26
40
*
27
41
* @codeCoverageIgnore
28
42
*/
@@ -38,6 +52,13 @@ public function __construct(
38
52
protected ?string $ type = null ,
39
53
protected ?string $ userLabel = null ,
40
54
protected ?string $ value = null ,
55
+ protected ?string $ device = null ,
56
+ protected ?string $ salt = null ,
57
+ protected ?int $ hashIterations = null ,
58
+ protected ?string $ algorithm = null ,
59
+ protected ?int $ counter = null ,
60
+ protected ?int $ digits = null ,
61
+ protected ?int $ period = null ,
41
62
) {
42
63
}
43
64
}
0 commit comments