diff --git a/app/Import/Mapper/OpposingAccounts.php b/app/Import/Mapper/OpposingAccounts.php index 24c5c6a973..dcead219f5 100644 --- a/app/Import/Mapper/OpposingAccounts.php +++ b/app/Import/Mapper/OpposingAccounts.php @@ -57,7 +57,7 @@ class OpposingAccounts implements MapperInterface } $list[$accountId] = $name; } - $list = array_merge([0 => trans('import.map_do_not_map')], $list); + $list = ["0" => trans('import.map_do_not_map')] + $list; return $list; }