Passed
Push — master ( 731289...cb0bb4 )
by Robin
03:03
created
src/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                     }
73 73
                     $code = array_filter(array_slice($lines, $start, $end - $start + 1, true), 'trim');
74 74
                     $max = strlen($end);
75
-                    $cite->code = implode("\n", array_map(function ($u, $v) use ($max) {
75
+                    $cite->code = implode("\n", array_map(function($u, $v) use ($max) {
76 76
                         return sprintf("%{$max}d    %s", $u + 1, rtrim($v));
77 77
                     }, array_keys($code), $code));
78 78
                     $cite->save();
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     function sweep()
92 92
     {
93 93
         array_map(
94
-            function ($u) {
94
+            function($u) {
95 95
                 $u->sweep();
96 96
             },
97 97
             array_merge(
Please login to merge, or discard this patch.