@@ -157,14 +157,14 @@ |
||
| 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'], |