@@ -65,7 +65,7 @@ |
||
65 | 65 | foreach ($lines as $line) { |
66 | 66 | $data = explode(' ', $line); |
67 | 67 | array_walk($data, 'trim'); |
68 | - $stats[] = array_values(array_filter($data, function ($value) { |
|
68 | + $stats[] = array_values(array_filter($data, function($value) { |
|
69 | 69 | return strlen($value) > 0; |
70 | 70 | })); |
71 | 71 | } |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | $collection = new ValuesCollection(); |
64 | 64 | |
65 | 65 | foreach ($cpu as $name => $value) { |
66 | - $collection->add($name . '.cpu.value', $value); |
|
66 | + $collection->add($name.'.cpu.value', $value); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | foreach ($memory as $name => $value) { |
70 | - $collection->add($name . '.memory.value', $value); |
|
70 | + $collection->add($name.'.memory.value', $value); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | return $collection; |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | protected function filterAbove($processes, $gate) |
96 | 96 | { |
97 | - return array_filter($processes, function ($item) use ($gate) { |
|
97 | + return array_filter($processes, function($item) use ($gate) { |
|
98 | 98 | return $item >= $gate; |
99 | 99 | }); |
100 | 100 | } |
@@ -111,8 +111,7 @@ discard block |
||
111 | 111 | foreach ($processes as $process) { |
112 | 112 | if (isset($cpus[$process->getName()])) { |
113 | 113 | $cpus[$process->getName()] += $process->getCpu(); |
114 | - } |
|
115 | - else { |
|
114 | + } else { |
|
116 | 115 | $cpus[$process->getName()] = $process->getCpu(); |
117 | 116 | } |
118 | 117 | } |
@@ -133,8 +132,7 @@ discard block |
||
133 | 132 | foreach ($processes as $process) { |
134 | 133 | if (isset($memory[$process->getName()])) { |
135 | 134 | $memory[$process->getName()] += $process->getMemory(); |
136 | - } |
|
137 | - else { |
|
135 | + } else { |
|
138 | 136 | $memory[$process->getName()] = $process->getMemory(); |
139 | 137 | } |
140 | 138 | } |