| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /*
- * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
- * SPDX-License-Identifier: MIT
- */
- declare(strict_types=1);
- namespace Respect\Validation\Exceptions;
- /**
- * Exceptions to be thrown by the Attribute Rule.
- *
- * @author Emmerson Siqueira <emmersonsiqueira@gmail.com>
- * @author Henrique Moody <henriquemoody@gmail.com>
- * @author Ivan Zinovyev <vanyazin@gmail.com>
- */
- final class KeyNestedException 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;
- }
- }
|