Passed
Push — master ( 90203d...b9d99a )
by Kirill
03:54
created
src/Bridge/Monolog/src/EventHandler.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         ListenerRegistryInterface $listenerRegistry,
31 31
         int $level = Logger::DEBUG,
32 32
         bool $bubble = true
33
-    ) {
33
+    ){
34 34
         $this->listenerRegistry = $listenerRegistry;
35 35
 
36 36
         parent::__construct($level, $bubble);
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             $record['context']
51 51
         );
52 52
 
53
-        foreach ($this->listenerRegistry->getListeners() as $listener) {
53
+        foreach ($this->listenerRegistry->getListeners() as $listener){
54 54
             call_user_func($listener, $e);
55 55
         }
56 56
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,8 @@
 block discarded – undo
50 50
             $record['context']
51 51
         );
52 52
 
53
-        foreach ($this->listenerRegistry->getListeners() as $listener) {
53
+        foreach ($this->listenerRegistry->getListeners() as $listener)
54
+        {
54 55
             call_user_func($listener, $e);
55 56
         }
56 57
 
Please login to merge, or discard this patch.