Passed
Push — master ( 050109...91e269 )
by Iman
02:56
created
src/Boot/DebugbarIntergrator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,20 +9,20 @@
 block discarded – undo
9 9
 {
10 10
     public static function register()
11 11
     {
12
-        if (! app()->offsetExists('debugbar')) {
12
+        if (!app()->offsetExists('debugbar')) {
13 13
             return;
14 14
         }
15 15
 
16
-        app()->singleton('heyman.debugger', function () {
16
+        app()->singleton('heyman.debugger', function() {
17 17
             return new MessagesCollector('HeyMan');
18 18
         });
19 19
 
20 20
         app()->make('debugbar')->addCollector(app('heyman.debugger'));
21 21
 
22
-        Event::listen('heyman_reaction_is_happening', function (...$debug) {
22
+        Event::listen('heyman_reaction_is_happening', function(...$debug) {
23 23
             app()['heyman_reaction_is_happened_in_debug'] = $debug;
24 24
             resolve('heyman.debugger')->addMessage('HeyMan Rule Matched in file: ');
25
-            resolve('heyman.debugger')->addMessage($debug[0].' on line: '.$debug[1]);
25
+            resolve('heyman.debugger')->addMessage($debug[0] . ' on line: ' . $debug[1]);
26 26
             resolve('heyman.debugger')->addMessage($debug[2]);
27 27
         });
28 28
     }
Please login to merge, or discard this patch.