Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Validator/DocumentValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(string $jsonSchema = null)
if (is_null($jsonSchema)) {
$schemaFile = realpath(__DIR__ . $this->defaultJsonSchemaFile);
if (!file_exists($schemaFile)) {
throw new \LogicException("The default schema file cannot be found: ${schemaFile}");
throw new \LogicException("The default schema file cannot be found: {$schemaFile}");
}
$jsonSchema = file_get_contents($schemaFile);
}
Expand Down