Completed
Push — master ( 711a53...614992 )
by Jildert
13:56
created
src/SystemMonitor/Measurements/MysqlConnectionSpeed.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace JildertMiedema\SystemMonitor\Measurements;
6 6
 
@@ -47,6 +47,6 @@  discard block
 block discarded – undo
47 47
         $timerEnd = microtime(true);
48 48
         $time = round(($timerEnd - $timerStart) * 1000, 4);
49 49
 
50
-        $store->storeTimer($key, $time . '|ms');
50
+        $store->storeTimer($key, $time.'|ms');
51 51
     }
52 52
 }
Please login to merge, or discard this patch.
src/SystemMonitor/Measurements/RedisConnectionSpeed.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace JildertMiedema\SystemMonitor\Measurements;
6 6
 
@@ -47,6 +47,6 @@  discard block
 block discarded – undo
47 47
         $timer_end = microtime(true);
48 48
         $time = round(($timer_end - $timer_start) * 1000, 4);
49 49
 
50
-        $store->storeTimer($key, $time . '|ms');
50
+        $store->storeTimer($key, $time.'|ms');
51 51
     }
52 52
 }
Please login to merge, or discard this patch.