Add space between foreach and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 12:52:39 +01:00
committed by M. Shull
parent fba2914392
commit ebbdec5ebd
134 changed files with 351 additions and 351 deletions

View File

@ -54,7 +54,7 @@ function array_column($input = null, $column_key = null, $index_key = null) {
}
}
$result_array = [];
foreach($params_input as $row) {
foreach ($params_input as $row) {
$key = $value = null;
$key_set = $value_set = false;
if($params_index_key !== null && array_key_exists($params_index_key, $row)) {