Skip to content

Commit

Permalink
Fix rules aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Oct 19, 2021
1 parent 32885fa commit 0df9ec8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/RuleFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ final class RuleFactory
'FileExists' => 'Exists',
'Float' => 'FloatVal',
'Int' => 'IntVal',
'Iterable' => 'IterableVal',
'Iterable' => 'IterableType',
'IterableVal' => 'IterableType',
'MinimumAge' => 'MinAge',
'NullValue' => 'NullType',
'Numeric' => 'NumericVal',
'Object' => 'ObjectType',
'ObjectVal' => 'ObjectType',
'Prnt' => 'Printable',
'String' => 'StringType',
'True' => 'TrueVal',
Expand Down

0 comments on commit 0df9ec8

Please sign in to comment.