Skip to content

Commit 5424d71

Browse files
committed
status check 3
1 parent 33b6aae commit 5424d71

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Differ.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function buildDiff(object $data1, object $data2): array
4040
$keys1 = array_keys(get_object_vars($data1));
4141
$keys2 = array_keys(get_object_vars($data2));
4242
$allKeys = array_unique(array_merge($keys1, $keys2));
43-
$sortedKeys = sort($allKeys, function($a, $b) {
43+
$sortedKeys = sort($allKeys, function ($a, $b) {
4444
return strcmp($a, $b);
4545
});
4646

@@ -131,4 +131,3 @@ function isObject(mixed $value): bool
131131
{
132132
return is_object($value);
133133
}
134-

0 commit comments

Comments
 (0)