Completed
Push — master ( c299ad...293d26 )
by Dave
15s queued 11s
created
src/Domain/ResultsParser/AnalysisResults.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $analysisResults)
29 29
     {
30
-        usort($analysisResults, function (AnalysisResult $a, AnalysisResult $b): int {
30
+        usort($analysisResults, function(AnalysisResult $a, AnalysisResult $b): int {
31 31
             return $a->getLocation()->compareTo($b->getLocation());
32 32
         });
33 33
 
Please login to merge, or discard this patch.
tests/Unit/Core/Analyser/LocationSortTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             $foo16,
37 37
         ];
38 38
 
39
-        usort($list, function (Location $a, Location $b): int {
39
+        usort($list, function(Location $a, Location $b): int {
40 40
             return $a->compareTo($b);
41 41
         });
42 42
 
Please login to merge, or discard this patch.
ResultsParsers/ExakatJsonResultsParser/ExakatJsonResultsParserTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,16 +52,16 @@
 block discarded – undo
52 52
         $result3 = $this->analysisResults->getAnalysisResults()[2];
53 53
 
54 54
         $this->assertMatch($result1,
55
-           'src/Domain/ResultsParser/AnalysisResults.php',
56
-           67,
57
-           'MismatchingDocblockParamType'
55
+            'src/Domain/ResultsParser/AnalysisResults.php',
56
+            67,
57
+            'MismatchingDocblockParamType'
58 58
         );
59 59
         $this->assertSame('', $result1->getMessage());
60 60
 
61 61
         $this->assertMatch($result2,
62 62
             'src/Domain/Utils/JsonUtils.php',
63 63
             29,
64
-             'MixedAssignment'
64
+                'MixedAssignment'
65 65
         );
66 66
 
67 67
         $this->assertMatch($result3,
Please login to merge, or discard this patch.