Skip to content

Commit

Permalink
style(php-cs-fixer): fix coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions authored and github-actions[bot] committed Dec 10, 2024
1 parent e7c73d5 commit 3822f76
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 40 deletions.
79 changes: 40 additions & 39 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Driver/Jsoner.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function toJson(mixed $value, bool $encode = true, bool $validate

$result = (string) $value;

if ($validate && !json_validate($result)) {
if ($validate && !\json_validate($result)) {
throw new BuilderException('Invalid JSON value.');
}

Expand Down

0 comments on commit 3822f76

Please sign in to comment.