Completed
Push — master ( ea4cfb...5fb319 )
by arto
01:52
created
source/Service/Content/Parser/StatisticListOfLineParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
                     $listOMandatoryProperties['total_accesses'] = substr($lineAsArray[0], 16);
110 110
                     $listOMandatoryProperties['total_traffic']  = substr($lineAsArray[1], 15);
111 111
                 } else if ($stringUtility->endsWith($line, 'request')) {
112
-                    $lineAsArray    = explode(' - ', $line);
112
+                    $lineAsArray = explode(' - ', $line);
113 113
 
114 114
                     $listOMandatoryProperties['b_per_seconds'] = filter_var(
115 115
                         $lineAsArray[1],
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                         FILTER_SANITIZE_NUMBER_INT
125 125
                     );
126 126
                 } else if ($stringUtility->endsWith($line, 'workers')) {
127
-                    $lineAsArray    = explode(',', $line);
127
+                    $lineAsArray = explode(',', $line);
128 128
 
129 129
                     $listOMandatoryProperties['idle_workers'] = filter_var(
130 130
                         $lineAsArray[1],
Please login to merge, or discard this patch.
example/remote/parse_detail_only.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     PHP_Timer::stop()
71 71
 );
72 72
 
73
-$storage    = $storageBuilder->andGetStorageAfterTheBuild();
73
+$storage = $storageBuilder->andGetStorageAfterTheBuild();
74 74
 
75 75
 dumpSectionIfThereIsSomeContent($storage->getListOfDetail(), 'Detail');
76 76
 
Please login to merge, or discard this patch.