Skip to content

Commit

Permalink
[Mime] Remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jun 5, 2020
1 parent 2adc530 commit 555def0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Crypto/SMimeSigner.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ final class SMimeSigner extends SMime
private $signOptions;
private $extraCerts;

/**
* @var string|null
*/
private $privateKeyPassphrase;

/**
* @param string $certificate The path of the file containing the signing certificate (in PEM format)
* @param string $privateKey The path of the file containing the private key (in PEM format)
Expand All @@ -52,7 +47,6 @@ public function __construct(string $certificate, string $privateKey, string $pri

$this->signOptions = $signOptions ?? PKCS7_DETACHED;
$this->extraCerts = $extraCerts ? realpath($extraCerts) : null;
$this->privateKeyPassphrase = $privateKeyPassphrase;
}

public function sign(Message $message): Message
Expand Down

0 comments on commit 555def0

Please sign in to comment.