mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 06:45:44 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
23 lines
650 B
PHP
23 lines
650 B
PHP
<?php
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class NotEmptyException extends ValidationException
|
|
{
|
|
const STANDARD = 0;
|
|
const NAMED = 1;
|
|
public static $defaultTemplates = array(
|
|
self::MODE_DEFAULT => array(
|
|
self::STANDARD => 'The value must not be empty',
|
|
self::NAMED => '{{name}} must not be empty',
|
|
),
|
|
self::MODE_NEGATIVE => array(
|
|
self::STANDARD => 'The value must be empty',
|
|
self::NAMED => '{{name}} must be empty',
|
|
),
|
|
);
|
|
|
|
public function chooseTemplate()
|
|
{
|
|
return $this->getName() == "" ? static::STANDARD : static::NAMED;
|
|
}
|
|
}
|