respect-validation/library/Exceptions/SortedException.php
Mikhail Vyrtsev 52c8541b9e New rule: Sorted
2017-06-29 05:18:02 +03:00

24 lines
604 B
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Exceptions;
class SortedException extends ValidationException
{
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} must be ordered',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} must not be ordered',
],
];
}