Skip to content

Commit 47887e5

Browse files
committed
style: correct code style violations
1 parent 4f3c63d commit 47887e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JsonSchema/Tool/DeepComparer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ public static function isEqual($left, $right): bool
2222
$isRightNumber = is_int($right) || is_float($right);
2323

2424
if ($isLeftScalar && $isRightScalar) {
25-
/**
25+
/*
2626
* In Json-Schema mathematically equal numbers are compared equal
27-
**/
27+
*/
2828
if ($isLeftNumber && $isRightNumber && (float) $left === (float) $right) {
2929
return true;
3030
}

0 commit comments

Comments
 (0)