summaryrefslogtreecommitdiffstats
path: root/usr/local/bin/3gstats.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/bin/3gstats.php')
-rwxr-xr-xusr/local/bin/3gstats.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/bin/3gstats.php b/usr/local/bin/3gstats.php
index a8a8fec..daf0500 100755
--- a/usr/local/bin/3gstats.php
+++ b/usr/local/bin/3gstats.php
@@ -35,7 +35,7 @@ $record['bwdownstream'] = 0;
$record['simstate'] = 0;
$record['service'] = 0;
-while(true) {
+while (true) {
$string = "";
$string = fgets($handle, 256);
@@ -44,7 +44,7 @@ while(true) {
$elements[0] = trim($elements[0]);
$elements[1] = trim($elements[1]);
- switch($elements[0]) {
+ switch ($elements[0]) {
case "^MODE":
$record['mode'] = $elements[1];
break;
@@ -70,7 +70,7 @@ while(true) {
break;
}
- if($i > 10) {
+ if ($i > 10) {
$csv = $header;
$csv .= implode(",", $record);
$csv .= "\n";
OpenPOWER on IntegriCloud