mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 13:53:33 +03:00
This commit is contained in:
parent
9b258b10bb
commit
75794a74ec
1 changed files with 4 additions and 0 deletions
|
@ -83,6 +83,10 @@ class SymfonyConstraintAnnotationReader
|
|||
$property->setExclusiveMaximum($annotation->value);
|
||||
} elseif ($annotation instanceof Assert\LessThanOrEqual) {
|
||||
$property->setMaximum($annotation->value);
|
||||
} elseif ($annotation instanceof Assert\GreaterThan) {
|
||||
$property->setExclusiveMinimum($annotation->value);
|
||||
} elseif ($annotation instanceof Assert\GreaterThanOrEqual) {
|
||||
$property->setMinimum($annotation->value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue