mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
Fix intendation in MultiController
Use spaces instead of tabs
This commit is contained in:
parent
d49f30ff77
commit
ae99dd39fd
@ -193,13 +193,12 @@ class Monitoring_MultiController extends Controller
|
|||||||
private function getUniqueValues($values, $key)
|
private function getUniqueValues($values, $key)
|
||||||
{
|
{
|
||||||
$unique = array();
|
$unique = array();
|
||||||
foreach ($values as $value)
|
foreach ($values as $value) {
|
||||||
{
|
if (is_array($value)) {
|
||||||
if (is_array($value)) {
|
$unique[$value[$key]] = $value[$key];
|
||||||
$unique[$value[$key]] = $value[$key];
|
} else {
|
||||||
} else {
|
$unique[$value->$key] = $value->$key;
|
||||||
$unique[$value->$key] = $value->$key;
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return $unique;
|
return $unique;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user