Skip to content

Commit

Permalink
Merge pull request #316 from euantorano/patch-1
Browse files Browse the repository at this point in the history
Fix invalid opening bracket for arrayHasKeys example
  • Loading branch information
willemwollebrants committed Jul 10, 2020
2 parents 4af076d + a204228 commit 9268ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ $v = new Valitron\Validator([
'city' => 'Doe D.C.'
]
]);
$v->rule(['arrayHasKeys', 'address', ['name', 'street', 'city']);
$v->rule('arrayHasKeys', 'address', ['name', 'street', 'city']);
$v->validate();
```

Expand Down

0 comments on commit 9268ade

Please sign in to comment.