We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d540f commit 608ec2fCopy full SHA for 608ec2f
src/Agent.php
@@ -94,7 +94,7 @@ public function compareWithSignature($fromSig) {
94
95
return array('success' => false, 'reason' => 'Comparison of this.mbox to signature.mbox_sha1sum failed: no match');
96
}
97
- else if (isset($fromSig->mbox) && isset($this->mbox_sha1sum)) {
+ elseif (isset($fromSig->mbox) && isset($this->mbox_sha1sum)) {
98
if ($fromSig->getMbox_sha1sum() === $this->mbox_sha1sum) {
99
return array('success' => true, 'reason' => null);
100
0 commit comments