From 62565dade1c1bdc9daa76156d742ab3d901ba3bf Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 5 Sep 2023 21:48:37 +0100 Subject: [PATCH] README.md: Remove unwanted whitespace (#700) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a883b19c..7b734cd3 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ $schemaStorage = new SchemaStorage(); $schemaStorage->addSchema('file://mySchema', $jsonSchemaObject); // Provide $schemaStorage to the Validator so that references can be resolved during validation -$jsonValidator = new Validator( new Factory($schemaStorage)); +$jsonValidator = new Validator(new Factory($schemaStorage)); // JSON must be decoded before it can be validated $jsonToValidateObject = json_decode('{"data":123}');