Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#2369 branch 'hotfix/re…
Browse files Browse the repository at this point in the history
…move-unused-vars'
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Encrypt/Openssl.php
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ public function decrypt($value)
throw new Exception\RuntimeException('Please give an envelope key for decryption with Openssl');
}

foreach ($this->keys['private'] as $key => $cert) {
foreach ($this->keys['private'] as $cert) {
$keys = openssl_pkey_get_private($cert, $this->getPassphrase());
}

Expand Down

0 comments on commit 0481606

Please sign in to comment.