respect-validation/library/Respect/Validation/Exceptions/NotEmptyException.php
Alexandre 4e068bf204 -Messages are now imperative ("foo must be bar") instead of informative ("foo is not bar").
-Several improvements on the messaging system and error reporting, lots of refactored code.
-Validators can now be safely named $val->setName('My Field'), and that name will reflect on the validation message ("My Field must be bla bla bla" instead of "incorrect value" must be bla bla bla)
2011-02-08 20:10:58 -02:00

19 lines
425 B
PHP

<?php
namespace Respect\Validation\Exceptions;
class NotEmptyException extends ValidationException
{
const STANDARD = 0;
const NAMED = 1;
public static $defaultTemplates = array(
self::STANDARD => 'The value must not be empty',
self::NAMED => '%s must not be empty',
);
public function chooseTemplate($name)
{
return empty($name) ? static::STANDARD : static::NAMED;
}
}