Passed
Push — master ( c54b8c...2ac8f3 )
by Vladimir
05:52
created
src/Check/rabbitmq/QueueSize/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $node = $node
60 60
             ->beforeNormalization()
61 61
                 ->ifArray()
62
-                ->then(static function ($value) use($keys) {
62
+                ->then(static function($value) use($keys) {
63 63
 
64 64
                     foreach ($keys as $key) {
65 65
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 ->arrayNode('check')
97 97
                     ->beforeNormalization()
98 98
                         ->ifString()
99
-                        ->then(static function ($v) { return ['dsn' => $v]; })
99
+                        ->then(static function($v) { return ['dsn' => $v]; })
100 100
                     ->end()
101 101
                     ->children()
102 102
                         ->scalarNode('queue')->isRequired()->end()
Please login to merge, or discard this patch.
src/Check/rabbitmq/RabbitMQ/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $node = $node
58 58
             ->beforeNormalization()
59 59
             ->ifArray()
60
-            ->then(static function ($value) use($keys) {
60
+            ->then(static function($value) use($keys) {
61 61
 
62 62
                 foreach ($keys as $key) {
63 63
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
                 ->arrayNode('check')
93 93
                     ->beforeNormalization()
94 94
                         ->ifString()
95
-                        ->then(static function ($v) { return ['dsn' => $v]; })
95
+                        ->then(static function($v) { return ['dsn' => $v]; })
96 96
                     ->end()
97 97
                     ->children()
98 98
                         ->scalarNode('host')->defaultValue('localhost')->end()
Please login to merge, or discard this patch.
src/Check/rabbitmq/QueueConsumer/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $node = $node
60 60
             ->beforeNormalization()
61 61
                 ->ifArray()
62
-                ->then(static function ($value) use($keys) {
62
+                ->then(static function($value) use($keys) {
63 63
 
64 64
                     foreach ($keys as $key) {
65 65
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 ->arrayNode('check')
97 97
                     ->beforeNormalization()
98 98
                         ->ifString()
99
-                        ->then(static function ($v) { return ['dsn' => $v]; })
99
+                        ->then(static function($v) { return ['dsn' => $v]; })
100 100
                     ->end()
101 101
                     ->children()
102 102
                         ->scalarNode('queue')->isRequired()->end()
Please login to merge, or discard this patch.