Completed
Push — master ( e787ce...d6ad3a )
by
unknown
18:33
created
install/Classes/ExtensionScanner/Php/Matcher/ConstructorArgumentMatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\ExtensionScanner\Php\Matcher;
4 4
 
5 5
 /*
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         // keeping positions having argument values that are not null
201 201
         $unusedArgumentPositions = array_filter(
202 202
             $unusedArgumentPositions,
203
-            function (int $position) use ($arguments) {
203
+            function(int $position) use ($arguments) {
204 204
                 $index = $position - 1;
205 205
                 return isset($arguments[$index]->value)
206 206
                     && !$arguments[$index]->value instanceof ConstFetch
Please login to merge, or discard this patch.