D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
lcobucci
/
jwt
/
src
/
Signer
/
Filename :
CannotSignPayload.php
back
Copy
<?php declare (strict_types=1); namespace WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Signer; use InvalidArgumentException; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Exception; final class CannotSignPayload extends InvalidArgumentException implements Exception { public static function errorHappened(string $error) : self { return new self('There was an error while creating the signature: ' . $error); } }