Completed
Push — master ( 0314c3...56d13a )
by Iman
05:15 queued 02:07
created
src/Reactions/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function __destruct()
38 38
     {
39 39
         $data = $this->validationData;
40
-        $modifier = $this->modifier ?: function ($d) {
40
+        $modifier = $this->modifier ?: function($d) {
41 41
             return $d;
42 42
         };
43 43
         $this->chain->condition = resolve(ResponderFactory::class)->validatorCallback($modifier, ...$data);
Please login to merge, or discard this patch.
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
-            resolve('heyman.debugger')->addMessage('HeyMan Rule Matched in file: '.$debug[0]);
21
-            resolve('heyman.debugger')->addMessage('on line: '.$debug[1]);
19
+        \Event::listen('heyman_reaction_is_happening', function(...$debug) {
20
+            resolve('heyman.debugger')->addMessage('HeyMan Rule Matched in file: ' . $debug[0]);
21
+            resolve('heyman.debugger')->addMessage('on line: ' . $debug[1]);
22 22
             resolve('heyman.debugger')->addMessage($debug[2]);
23 23
         });
24 24
     }
Please login to merge, or discard this patch.