Skip to content

Commit cdd2299

Browse files
authored
Fix code styles (#498)
1 parent daf77cb commit cdd2299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Catalogue/Operation/ReplaceOperation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,12 @@ private function doMergeMetadata(array $source, array $target): array
150150
// If both arrays, do recursive call
151151
$source[$key] = $this->doMergeMetadata($source[$key], $value);
152152
}
153-
// Else, use value form $source
153+
// Else, use value form $source
154154
} else {
155155
// Add new value
156156
$source[$key] = $value;
157157
}
158-
// if sequential
158+
// if sequential
159159
} elseif (!\in_array($value, $source, true)) {
160160
$source[] = $value;
161161
}

0 commit comments

Comments
 (0)