__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Validation;
use Lcobucci\JWT\Exception;
use RuntimeException;
use function array_map;
use function implode;
final class RequiredConstraintsViolated extends RuntimeException implements Exception
{
/** @var ConstraintViolation[] */
private $violations = [];
/**
* @param ConstraintViolation ...$violations
* @return self
*/
public static function fromViolations(ConstraintViolation ...$violations)
{
$exception = new self(self::buildMessage($violations));
$exception->violations = $violations;
return $exception;
}
/**
* @param ConstraintViolation[] $violations
*
* @return string
*/
private static function buildMessage(array $violations)
{
$violations = array_map(
static function (ConstraintViolation $violation) {
return '- ' . $violation->getMessage();
},
$violations
);
$message = "The token violates some mandatory constraints, details:\n";
$message .= implode("\n", $violations);
return $message;
}
/** @return ConstraintViolation[] */
public function violations()
{
return $this->violations;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Constraint | Folder | 0775 |
|
|
| Constraint.php | File | 174 B | 0664 |
|
| ConstraintViolation.php | File | 176 B | 0664 |
|
| NoConstraintsGiven.php | File | 175 B | 0664 |
|
| RequiredConstraintsViolated.php | File | 1.24 KB | 0664 |
|
| Validator.php | File | 1.31 KB | 0664 |
|