respect-validation/library/Exceptions/NotEmptyException.php
2015-06-08 11:51:45 -03:00

24 lines
651 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;
}
}