Skip to content

Commit 85d25fc

Browse files
committed
feat: pass optional revocation timestamp to mapper
Signed-off-by: Vitor Mattos <[email protected]>
1 parent 9c22e07 commit 85d25fc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/Service/Crl/CrlService.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ public function revokeCertificate(
6060
?string $reasonText = null,
6161
?string $revokedBy = null,
6262
?DateTime $invalidityDate = null,
63+
?DateTime $revokedAt = null,
6364
): bool {
6465

6566
try {
@@ -73,7 +74,8 @@ public function revokeCertificate(
7374
$reasonText,
7475
$revokedBy,
7576
$invalidityDate,
76-
$crlNumber
77+
$crlNumber,
78+
$revokedAt,
7779
);
7880

7981
return true;

0 commit comments

Comments
 (0)