HighSpeaker/vendor/workerman/validation/library/Exceptions/AttributeException.php

46 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2022-12-24 19:40:40 +05:30
<?php
/*
2024-01-31 19:45:08 +05:30
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
2022-12-24 19:40:40 +05:30
*/
declare(strict_types=1);
namespace Respect\Validation\Exceptions;
/**
* Exceptions to be thrown by the Attribute Rule.
*
2024-01-31 19:45:08 +05:30
* @author Alexandre Gomes Gaigalas <alganet@gmail.com>
2022-12-24 19:40:40 +05:30
* @author Emmerson Siqueira <emmersonsiqueira@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class AttributeException extends NestedValidationException implements NonOmissibleException
{
public const NOT_PRESENT = 'not_present';
public const INVALID = 'invalid';
/**
* {@inheritDoc}
*/
protected $defaultTemplates = [
self::MODE_DEFAULT => [
self::NOT_PRESENT => '属性 {{name}} 必须存在',
self::INVALID => '属性 {{name}} 必须有效',
],
self::MODE_NEGATIVE => [
self::NOT_PRESENT => '属性 {{name}} 不能存在',
self::INVALID => '属性 {{name}} 必须无效',
],
];
/**
* {@inheritDoc}
*/
protected function chooseTemplate(): string
{
return $this->getParam('hasReference') ? self::INVALID : self::NOT_PRESENT;
}
}