Skip to content

Commit d42707f

Browse files
committed
Fixed mergeWith flags #36
1 parent fee2498 commit d42707f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Translations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public function mergeWith(Translations $translations, $method = null)
212212
}
213213

214214
$add = (boolean) ($method & self::MERGE_ADD);
215-
$references = (boolean) $method & (self::MERGE_REFERENCES);
215+
$references = (boolean) ($method & self::MERGE_REFERENCES);
216216
$comments = (boolean) ($method & self::MERGE_COMMENTS);
217217

218218
foreach ($translations as $entry) {

0 commit comments

Comments
 (0)