Fix intendation in MultiController

Use spaces instead of tabs
This commit is contained in:
Matthias Jentsch 2014-06-25 15:25:54 +02:00
parent d49f30ff77
commit ae99dd39fd
1 changed files with 6 additions and 7 deletions

View File

@ -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;
}