Skip to content

Commit

Permalink
add note for Extant rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Feb 25, 2016
1 parent 16dfad9 commit 6f029cd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/validate.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ Validates the value as loosely equal (`==') to a specified value.
$filter->validate('field')->is('equalToValue', $other_value);
```

## extant

Validates thhat the field exists in the subject, even if it is null or blank.

```php
$filter->validate('field')->is('extant');
```

## float

Validates the value as representing a float.
Expand Down

0 comments on commit 6f029cd

Please sign in to comment.