1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

Add float validator case to spec to prevent fallthrough

This commit is contained in:
Jake Barnby 2022-01-27 19:43:30 +13:00
parent 2b82148591
commit 30a14f01e8
3 changed files with 6 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -319,6 +319,10 @@ class Swagger2 extends Format
$node['type'] = $validator->getType();
$node['format'] = 'int32';
break;
case 'Utopia\Validator\FloatValidator':
$node['type'] = 'number';
$node['format'] = 'float';
break;
case 'Utopia\Validator\Length':
$node['type'] = $validator->getType();
break;