From a1f0e611919e7f138c78abae2068bc76d0590138 Mon Sep 17 00:00:00 2001 From: Can Vural Date: Tue, 2 Jun 2020 17:56:38 +0200 Subject: [PATCH] exclusiveMinimum and exclusiveMaximum are boolean --- src/spec/Schema.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spec/Schema.php b/src/spec/Schema.php index 8f69a8d5..59eb425c 100644 --- a/src/spec/Schema.php +++ b/src/spec/Schema.php @@ -26,9 +26,9 @@ * @property string $title * @property int|float $multipleOf * @property int|float $maximum - * @property int|float $exclusiveMaximum + * @property bool $exclusiveMaximum * @property int|float $minimum - * @property int|float $exclusiveMinimum + * @property bool $exclusiveMinimum * @property int $maxLength * @property int $minLength * @property string $pattern (This string SHOULD be a valid regular expression, according to the [ECMA 262 regular expression dialect](https://www.ecma-international.org/ecma-262/5.1/#sec-7.8.5))