Skip to content

Commit 56619fa

Browse files
refactor(rector): drop unused catch variable in Pkcs12Handler
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent ec40325 commit 56619fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Handler/SignEngine/Pkcs12Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private function extractTimestampData(array $decoded, array $result): array {
170170
if (!empty($timestampData['genTime']) || !empty($timestampData['policy']) || !empty($timestampData['serialNumber'])) {
171171
$result['timestamp'] = $timestampData;
172172
}
173-
} catch (\Throwable $e) {
173+
} catch (\Throwable) {
174174
}
175175

176176
if (!isset($result['signingTime']) || !$result['signingTime'] instanceof \DateTime) {

0 commit comments

Comments
 (0)