Skip to content

Commit 622d1c2

Browse files
committed
Disable nullable
1 parent e6e3018 commit 622d1c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

external_files/thephpleague/SchemaValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function validate($data, CebeSchema $schema, ?BreadCrumb $breadCrumb = nu
5858

5959
try {
6060
// These keywords are not part of the JSON Schema at all (new to OAS)
61-
(new Nullable($schema))->validate($data, $schema->nullable);
61+
// (new Nullable($schema))->validate($data, $schema->nullable);
6262

6363
// We don't want to validate any more if the value is a valid Null
6464
if ($data === null) {

0 commit comments

Comments
 (0)