LaysenseAuth/vendor/workerman/validation/library/Exceptions/YesException.php

30 lines
627 B
PHP
Raw Normal View History

2024-08-09 19:46:39 +05:30
<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Exceptions;
/**
* @author Cameron Hall <me@chall.id.au>
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class YesException extends ValidationException
{
/**
* {@inheritDoc}
*/
protected $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} 不被认为是 "Yes"',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} 被认为是 "Yes"',
],
];
}