respect-validation/library/Respect/Validation/Exceptions/EachException.php
Alexandre 35c4d5febe -ExceptionIterator now can be configured to skip composite redundant messages or iterate over them all
-Rules\Each improvements and new tests, now can validate array keys too. Better exception reports for it.
-A very abrangent test including several cases on ValidatorTest
2011-02-02 00:28:02 -02:00

12 lines
No EOL
197 B
PHP

<?php
namespace Respect\Validation\Exceptions;
class EachException extends ValidationException
{
public static $defaultTemplates = array(
'%4$d invalid itens found (%3$s)',
);
}