__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace Lcobucci\JWT\Validation;
use Lcobucci\JWT\Exception;
use RuntimeException;
use function get_class;
final class ConstraintViolation extends RuntimeException implements Exception
{
/**
* @readonly
* @var class-string<Constraint>|null
*/
public ?string $constraint = null;
public static function error(string $message, Constraint $constraint): self
{
$exception = new self($message);
$exception->constraint = get_class($constraint);
return $exception;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Constraint | Folder | 0775 |
|
|
| Constraint.php | File | 205 B | 0664 |
|
| ConstraintViolation.php | File | 571 B | 0664 |
|
| NoConstraintsGiven.php | File | 200 B | 0664 |
|
| RequiredConstraintsViolated.php | File | 1.18 KB | 0664 |
|
| SignedWith.php | File | 112 B | 0664 |
|
| ValidAt.php | File | 109 B | 0664 |
|
| Validator.php | File | 1.36 KB | 0664 |
|