respect-validation/library/Respect/Validation/Exceptions/KeyException.php
2011-02-05 15:32:21 -02:00

17 lines
344 B
PHP

<?php
namespace Respect\Validation\Exceptions;
class KeyException extends AbstractRelatedException
{
public static $defaultTemplates = array(
'"%2$s" is not present',
'"%2$s" is invalid',
);
public function chooseTemplate($input, $attributeName, $theAttribute)
{
return $theAttribute ? 0 : 1;
}
}