__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Lcobucci\JWT\Token;
use InvalidArgumentException;
use Lcobucci\JWT\Exception;
use function sprintf;
final class RegisteredClaimGiven extends InvalidArgumentException implements Exception
{
const DEFAULT_MESSAGE = 'Builder#withClaim() is meant to be used for non-registered claims, '
. 'check the documentation on how to set claim "%s"';
/**
* @param string $name
*
* @return self
*/
public static function forClaim($name)
{
return new self(sprintf(self::DEFAULT_MESSAGE, $name));
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DataSet.php | File | 1.02 KB | 0664 |
|
| InvalidTokenStructure.php | File | 747 B | 0664 |
|
| Plain.php | File | 167 B | 0664 |
|
| RegisteredClaimGiven.php | File | 587 B | 0664 |
|
| RegisteredClaims.php | File | 1.75 KB | 0664 |
|
| Signature.php | File | 204 B | 0664 |
|
| UnsupportedHeaderFound.php | File | 326 B | 0664 |
|