Skip to content

Commit 555def0

Browse files
committed
[Mime] Remove unused var
1 parent 2adc530 commit 555def0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Crypto/SMimeSigner.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ final class SMimeSigner extends SMime
2424
private $signOptions;
2525
private $extraCerts;
2626

27-
/**
28-
* @var string|null
29-
*/
30-
private $privateKeyPassphrase;
31-
3227
/**
3328
* @param string $certificate The path of the file containing the signing certificate (in PEM format)
3429
* @param string $privateKey The path of the file containing the private key (in PEM format)
@@ -52,7 +47,6 @@ public function __construct(string $certificate, string $privateKey, string $pri
5247

5348
$this->signOptions = $signOptions ?? PKCS7_DETACHED;
5449
$this->extraCerts = $extraCerts ? realpath($extraCerts) : null;
55-
$this->privateKeyPassphrase = $privateKeyPassphrase;
5650
}
5751

5852
public function sign(Message $message): Message

0 commit comments

Comments
 (0)