Skip to content

Commit 4bdd4cf

Browse files
authored
Fix code styles (#479)
1 parent 123dfd2 commit 4bdd4cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Catalogue/Operation/ReplaceOperation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,12 @@ private function doMergeMetadata(array $source, array $target): array
140140
// If both arrays, do recursive call
141141
$source[$key] = $this->doMergeMetadata($source[$key], $value);
142142
}
143-
// Else, use value form $source
143+
// Else, use value form $source
144144
} else {
145145
// Add new value
146146
$source[$key] = $value;
147147
}
148-
// if sequential
148+
// if sequential
149149
} elseif (!\in_array($value, $source, true)) {
150150
$source[] = $value;
151151
}

Tests/Functional/Controller/WebUIControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static function setUpBeforeClass(): void
4040
</xliff>
4141

4242
XML
43-
);
43+
);
4444
}
4545

4646
protected function setUp(): void

0 commit comments

Comments
 (0)