1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

formatting fixes

This commit is contained in:
Damodar Lohani 2022-08-13 05:10:34 +00:00
parent 560bd97fcd
commit 792d657a4f
2 changed files with 2 additions and 4 deletions

View file

@ -252,9 +252,7 @@ App::shutdown()
}
$route = $utopia->match($request);
$requestParams = array_combine(
array_keys($route->getParams()), array_column($route->getParams(), 'value')
);
$requestParams = array_combine(array_keys($route->getParams()), array_column($route->getParams(), 'value'));
$user = $audits->getUser();
$parseLabel = function ($label) use ($responsePayload, $requestParams, $user) {

View file

@ -163,7 +163,7 @@ $cli
$database = getDatabase($register, '_console');
$influxDB = getInfluxDB($register);
switch($type) {
switch ($type) {
case 'timeseries':
aggregateTimeseries($database, $influxDB, $logError);
break;