Add space between elseif/else if and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 13:01:57 +01:00
committed by M. Shull
parent 100db25ed9
commit a935b091d3
26 changed files with 46 additions and 46 deletions

View File

@@ -64,7 +64,7 @@ function array_column($input = null, $column_key = null, $index_key = null) {
if($params_column_key === null) {
$value_set = true;
$value = $row;
} elseif(is_array($row) && array_key_exists($params_column_key, $row)) {
} elseif (is_array($row) && array_key_exists($params_column_key, $row)) {
$value_set = true;
$value = $row[$params_column_key];
}