Completed
Push — master ( d3e0a6...196cd2 )
by Iman
08:32
created
src/Boot/DebugbarIntergrator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,15 +10,15 @@
 block discarded – undo
10 10
             return;
11 11
         }
12 12
 
13
-        app()->singleton('heyman.debugger', function () {
13
+        app()->singleton('heyman.debugger', function() {
14 14
             return new \DebugBar\DataCollector\MessagesCollector('HeyMan');
15 15
         });
16 16
 
17 17
         app()->make('debugbar')->addCollector(app('heyman.debugger'));
18 18
 
19
-        \Event::listen('heyman_reaction_is_happening', function (...$debug) {
20
-            app('heyman.debugger')->addMessage('HeyMan Rule Matched in file: '.$debug[0]);
21
-            app('heyman.debugger')->addMessage('on line: '.$debug[1]);
19
+        \Event::listen('heyman_reaction_is_happening', function(...$debug) {
20
+            app('heyman.debugger')->addMessage('HeyMan Rule Matched in file: ' . $debug[0]);
21
+            app('heyman.debugger')->addMessage('on line: ' . $debug[1]);
22 22
             app('heyman.debugger')->addMessage($debug[2]);
23 23
         });
24 24
     }
Please login to merge, or discard this patch.