mvc: style sweep

This commit is contained in:
Franco Fichtner 2020-04-05 09:47:08 +02:00
parent ca5ab79c8d
commit c4bc519e9a

View File

@ -254,10 +254,10 @@ class InterfaceController extends ApiControllerBase
}
}
$key = sprintf(
"%s%s%s",
'%s%s%s',
$node['address'],
!empty($node['path']) ? " - " : "",
!empty($node['path']) ? $node['path']: ""
!empty($node['path']) ? ' - ' : '',
!empty($node['path']) ? $node['path'] : ''
);
$stats['Active UNIX domain sockets'][$key] = $node;
}
@ -266,5 +266,4 @@ class InterfaceController extends ApiControllerBase
return ['statistics' => $stats];
}
}