FestinHegre/vendor/symfony/validator/Constraints/Charset.php

44 lines
1.4 KiB
PHP
Raw Normal View History

2024-09-26 17:26:04 +02:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator\Constraints;
use Symfony\Component\Validator\Attribute\HasNamedArguments;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
/**
* @author Alexandre Daubois <alex.daubois@gmail.com>
*/
#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
final class Charset extends Constraint
{
public const BAD_ENCODING_ERROR = '94c5e58b-f892-4e25-8fd6-9d89c80bfe81';
protected const ERROR_NAMES = [
self::BAD_ENCODING_ERROR => 'BAD_ENCODING_ERROR',
];
#[HasNamedArguments]
public function __construct(
public array|string $encodings = [],
public string $message = 'The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}.',
?array $groups = null,
mixed $payload = null,
) {
parent::__construct(null, $groups, $payload);
if ([] === $this->encodings) {
throw new ConstraintDefinitionException(sprintf('The "%s" constraint requires at least one encoding.', static::class));
}
}
}