* * For the full copyright and license information, please view the "LICENSE.md" * file that was distributed with this source code. */ declare(strict_types=1); namespace Respect\Validation\Exceptions; /** * Exceptions to be thrown by the Attribute Rule. * * @author Alexandre Gomes Gaigalas * @author Emmerson Siqueira * @author Henrique Moody */ final class KeyException extends NestedValidationException implements NonOmissibleException { public const NOT_PRESENT = 'not_present'; public const INVALID = 'invalid'; /** * {@inheritdoc} */ public static $defaultTemplates = [ self::MODE_DEFAULT => [ self::NOT_PRESENT => 'Key {{name}} must be present', self::INVALID => 'Key {{name}} must be valid', ], self::MODE_NEGATIVE => [ self::NOT_PRESENT => 'Key {{name}} must not be present', self::INVALID => 'Key {{name}} must not be valid', ], ]; /** * {@inheritdoc} */ protected function chooseTemplate(): string { return $this->getParam('hasReference') ? self::INVALID : self::NOT_PRESENT; } }