Passed
Push — master ( 44236a...cf19b6 )
by MusikAnimal
04:38
created
src/AppBundle/Helper/AutomatedEditsHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,14 +157,14 @@
 block discarded – undo
157 157
 
158 158
         $revertEntries = array_filter(
159 159
             $this->getTools($project),
160
-            function ($tool) {
160
+            function($tool) {
161 161
                 return isset($tool['revert']);
162 162
             }
163 163
         );
164 164
 
165 165
         // If 'revert' is set to `true`, then use 'regex' as the regular expression,
166 166
         //  otherwise 'revert' is assumed to be the regex string.
167
-        $this->revertTools[$projectDomain] = array_map(function ($revertTool) {
167
+        $this->revertTools[$projectDomain] = array_map(function($revertTool) {
168 168
             return [
169 169
                 'link' => $revertTool['link'],
170 170
                 'regex' => $revertTool['revert'] === true ? $revertTool['regex'] : $revertTool['revert'],
Please login to merge, or discard this patch.