1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

Reordered types

This commit is contained in:
Eldad Fux 2019-12-14 20:34:42 +02:00
parent 84ea4f2679
commit 88df11f80f

View file

@ -159,15 +159,15 @@ class Structure extends Validator
case 'boolean':
$validator = new Validator\Boolean();
break;
case 'ip':
$validator = new Validator\IP();
break;
case 'email':
$validator = new Validator\Email();
break;
case 'url':
$validator = new Validator\URL();
break;
case 'ip':
$validator = new Validator\IP();
break;
case 'wildcard':
$validator = new Validator\Mock();
break;