Completed
Pull Request — master (#2)
by
unknown
18:25 queued 03:24
created
src/SystemMonitor/Measurements/Queue/WaitingTimeJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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\Queue;
6 6
 
Please login to merge, or discard this patch.
src/SystemMonitor/Console/MeasurementRun.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\Console;
6 6
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function handle()
32 32
     {
33 33
         if ($this->option('debug')) {
34
-            app()->bind('measurement.store', function () {
34
+            app()->bind('measurement.store', function() {
35 35
                 return new ConsoleStore($this->output);
36 36
             });
37 37
         }
Please login to merge, or discard this patch.
src/SystemMonitor/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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;
6 6
 
Please login to merge, or discard this patch.
src/SystemMonitor/Store/ConsoleStore.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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\Store;
6 6
 
Please login to merge, or discard this patch.
src/SystemMonitor/SystemMonitorServiceProvider.php 1 patch
Spacing   +5 added lines, -5 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;
6 6
 
@@ -16,22 +16,22 @@  discard block
 block discarded – undo
16 16
 {
17 17
     public function register()
18 18
     {
19
-        $this->app->bind('measurement', function () {
19
+        $this->app->bind('measurement', function() {
20 20
             return new Manager($this->app);
21 21
         });
22 22
 
23
-        $this->app->bind('measurement.store', function () {
23
+        $this->app->bind('measurement.store', function() {
24 24
             return $this->app[StatsdStore::class];
25 25
         });
26 26
 
27
-        $this->app->resolving('measurement', function (Manager $manager) {
27
+        $this->app->resolving('measurement', function(Manager $manager) {
28 28
             $manager->extend($this->app[MysqlConnectionSpeed::class]);
29 29
             $manager->extend($this->app[RedisConnectionSpeed::class]);
30 30
             $manager->extend($this->app[QueueWaitingTime::class]);
31 31
             $manager->extend($this->app[QueueSize::class]);
32 32
         });
33 33
 
34
-        $this->app->singleton('command.measurement.run', function () {
34
+        $this->app->singleton('command.measurement.run', function() {
35 35
             return new MeasurementRun();
36 36
         });
37 37
 
Please login to merge, or discard this patch.
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.
src/SystemMonitor/Measurements/QueueWaitingTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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
 
Please login to merge, or discard this patch.
src/SystemMonitor/Measurements/Measurement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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
 
Please login to merge, or discard this patch.