Apply fixes from StyleCI (#12120)

This commit is contained in:
Jellyfrog
2020-09-21 15:40:17 +02:00
committed by GitHub
parent 77c531527c
commit 82f43cb98d
1733 changed files with 18337 additions and 18540 deletions
@@ -1,29 +1,30 @@
<?php
$name = 'bind';
$app_id = $app['app_id'];
$unit_text = 'per second';
$colours = 'psychedelic';
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;
$unit_text = 'per second';
$colours = 'psychedelic';
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;
$rrd_filename = rrd_name($device['hostname'], array('app', 'bind', $app['app_id'], 'cache'));
$rrd_filename = rrd_name($device['hostname'], ['app', 'bind', $app['app_id'], 'cache']);
$rrd_list=array();
$rrd_list = [];
if (rrdtool_check_rrd_exists($rrd_filename)) {
$rrd_list[]=array(
$rrd_list[] = [
'filename' => $rrd_filename,
'descr' => 'Mem Exhaustion',
'ds' => 'crddtme',
);
$rrd_list[]=array(
];
$rrd_list[] = [
'filename' => $rrd_filename,
'descr' => 'TTL Expiration',
'ds' => 'crddtte',
);
];
} else {
d_echo('RRD "'.$rrd_filename.'" not found');
d_echo('RRD "' . $rrd_filename . '" not found');
}
require 'includes/html/graphs/generic_multi_line.inc.php';