Readme fix

This commit is contained in:
Alexandre Gomes Gaigalas 2010-09-24 21:39:22 -03:00
parent d25f7220dc
commit 47f0543ecf
2 changed files with 1 additions and 20 deletions

View file

@ -1,23 +1,3 @@
== About
Respect\Validation aims to be the most awesome validation toolkit ever created
Single validator usage samples:
<?php
use Respect\Validation\Validator as v;
//Returns true or false
v::isDate('2009-12-01', 'between', '2008-01-01', '2010-10-10');
//Exception sample
try {
v::validDate('2009-12-01', 'between', '2008-01-01', '2010-10-10');
} catch (Date\OutOfBoundsException $e) {
echo $e->getMessage();
}
//Raw constructor sample
$dateValidator = new Date\Between('2008-01-01', '2010-10-10');
$dateValidator->isValid('2009-12-01');

View file

@ -7,6 +7,7 @@ use Respect\Validation\InvalidException;
class AllTest extends ValidatorTestCase
{
protected $object;
protected function setUp()