respect-validation/library/Exceptions/KeyNestedException.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2015-10-05 21:20:04 +02:00
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
2015-10-05 21:20:04 +02:00
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
2015-10-05 21:20:04 +02:00
*/
declare(strict_types=1);
2015-10-05 21:20:04 +02:00
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
2015-10-05 21:20:04 +02:00
{
public const NOT_PRESENT = 'not_present';
public const INVALID = 'invalid';
/**
* {@inheritDoc}
*/
protected $defaultTemplates = [
2015-10-18 03:44:47 +02:00
self::MODE_DEFAULT => [
2015-10-05 21:20:04 +02:00
self::NOT_PRESENT => 'No items were found for key chain {{name}}',
self::INVALID => 'Key chain {{name}} is not valid',
2015-10-18 03:44:47 +02:00
],
self::MODE_NEGATIVE => [
2015-10-05 21:20:04 +02:00
self::NOT_PRESENT => 'Items for key chain {{name}} must not be present',
self::INVALID => 'Key chain {{name}} must not be valid',
2015-10-18 03:44:47 +02:00
],
];
/**
* {@inheritDoc}
*/
protected function chooseTemplate(): string
{
return $this->getParam('hasReference') ? self::INVALID : self::NOT_PRESENT;
}
2015-10-05 21:20:04 +02:00
}