LaysenseAuth/vendor/workerman/validation/library/Exceptions/NotEmojiException.php
2024-08-09 22:16:39 +08:00

29 lines
599 B
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Exceptions;
/**
* @author Mazen Touati <mazen_touati@hotmail.com>
*/
final class NotEmojiException extends ValidationException
{
/**
* {@inheritDoc}
*/
protected $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} 不能包含表情符号',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} 必须包含表情符号',
],
];
}