Completed
Push — master ( e306f1...c9eaa1 )
by Iman
05:24
created
src/Hooks/ViewHooks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $views = $this->normalizeInput($views);
40 40
 
41
-        $mapper = function ($view) {
41
+        $mapper = function($view) {
42 42
             $this->checkViewExists($view);
43 43
         };
44 44
 
Please login to merge, or discard this patch.
src/WatchingStrategies/ViewEventManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
      */
25 25
     public function startGuarding(callable $callback)
26 26
     {
27
-        $callback = function (...$args) use ($callback) {
28
-            if (! config('heyman_ignore_view', false)) {
27
+        $callback = function(...$args) use ($callback) {
28
+            if (!config('heyman_ignore_view', false)) {
29 29
                 $callback(...$args);
30 30
             }
31 31
         };
Please login to merge, or discard this patch.
src/WatchingStrategies/EloquentEventsManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
      */
30 30
     public function startGuarding(callable $callback)
31 31
     {
32
-        $c = function (...$args) use ($callback) {
33
-            if (! config('heyman_ignore_eloquent', false)) {
32
+        $c = function(...$args) use ($callback) {
33
+            if (!config('heyman_ignore_eloquent', false)) {
34 34
                 $callback(...$args);
35 35
             }
36 36
         };
Please login to merge, or discard this patch.
src/WatchingStrategies/RouterEventManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             }
77 77
         }
78 78
 
79
-        return function () {
79
+        return function() {
80 80
         };
81 81
     }
82 82
 
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
      */
87 87
     private function wrapCallbackForIgnore($callback): \Closure
88 88
     {
89
-        return function () use ($callback) {
90
-            if (! config('heyman_ignore_route', false)) {
89
+        return function() use ($callback) {
90
+            if (!config('heyman_ignore_route', false)) {
91 91
                 $callback();
92 92
             }
93 93
         };
Please login to merge, or discard this patch.