| @@ -109,7 +109,7 @@ discard block | ||
| 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 | ||
| 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], | 
| @@ -70,7 +70,7 @@ | ||
| 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 | |