@@ -30,7 +30,7 @@ discard block |
||
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 |
||
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 |
@@ -50,7 +50,8 @@ |
||
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 |