From ae99dd39fd9c2941c5309c51c1052e5d673d21a9 Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Wed, 25 Jun 2014 15:25:54 +0200 Subject: [PATCH] Fix intendation in MultiController Use spaces instead of tabs --- .../application/controllers/MultiController.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/modules/monitoring/application/controllers/MultiController.php b/modules/monitoring/application/controllers/MultiController.php index 69372a106..28661d54b 100644 --- a/modules/monitoring/application/controllers/MultiController.php +++ b/modules/monitoring/application/controllers/MultiController.php @@ -193,13 +193,12 @@ class Monitoring_MultiController extends Controller private function getUniqueValues($values, $key) { $unique = array(); - foreach ($values as $value) - { - if (is_array($value)) { - $unique[$value[$key]] = $value[$key]; - } else { - $unique[$value->$key] = $value->$key; - } + foreach ($values as $value) { + if (is_array($value)) { + $unique[$value[$key]] = $value[$key]; + } else { + $unique[$value->$key] = $value->$key; + } } return $unique; }