Completed
Branch master (6d4db6)
by Jildert
02:25
created
Category
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.