Completed
Pull Request — master (#41)
by
unknown
02:47 queued 57s
created
src/Views/Stats/StatsJsonView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 					foreach ($dataGroup as $row)
265 265
 					{
266 266
 						$exploded = explode('.', $row['name']);
267
-						$version  = $exploded[0] . '.' . (isset($exploded[1]) ? $exploded[1] : '0');
267
+						$version  = $exploded[0].'.'.(isset($exploded[1]) ? $exploded[1] : '0');
268 268
 
269 269
 						// If the container does not exist, add it
270 270
 						if (!isset($counts[$version]))
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
 
350 350
 		foreach ($items as $item)
351 351
 		{
352
-			$data[$this->source][$item['db_type']][$item['db_version']]= $item['count'];
352
+			$data[$this->source][$item['db_type']][$item['db_version']] = $item['count'];
353 353
 			$this->totalItems += $item['count'];
354 354
 		}
355 355
 
Please login to merge, or discard this patch.