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 9594c6f commit 1f1f7b1Copy full SHA for 1f1f7b1
1 file changed
src/XML/ds/X509Certificate.php
@@ -52,8 +52,8 @@ public function getCertificate(): string
52
*/
53
private function setCertificate(string $certificate): void
54
{
55
- Assert::notEmpty($digest, 'DigestValue cannot be empty');
56
- Assert::stringPlausibleBase64($digest, 'ds:X509Certificate is not a valid Base64 encoded string');
+ Assert::notEmpty($certificate, 'ds:X509Certificate cannot be empty');
+ Assert::stringPlausibleBase64($certificate, 'ds:X509Certificate is not a valid Base64 encoded string');
57
58
$this->certificate = $certificate;
59
}
0 commit comments