Skip to content
Merged
Show file tree
Hide file tree
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/Exceptions/DocumentParseError.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static function unknownFormat(string $format): self
));
}

public static function invalidContent(string $file, string $errorMessage = null): self
public static function invalidContent(string $file, ?string $errorMessage = null): self
{
$message = sprintf(
'File "%s" don\'t seam to contain a valid json/yaml document',
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/Path.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

final class Path extends \RuntimeException
{
public static function notFound(string $path = null): self
public static function notFound(?string $path = null): self
{
return new self('Json path to value not found. ' . $path);
}
Expand Down