Passed
Push — master ( 110e22...e67765 )
by Alec
02:51
created
src/Tools/Reports/Formatters/ReportFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     protected function wrongReportType(string $expected, ReportInterface $report): void
21 21
     {
22 22
         throw new \RuntimeException(
23
-            'Instance of [' . $expected . '] expected, [' . typeOf($report) . '] given.'
23
+            'Instance of ['.$expected.'] expected, ['.typeOf($report).'] given.'
24 24
         );
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Tools/Benchmark.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $this->iterations = $this->refineIterations($iterations);
57 57
 
58 58
         $this->iterationNumberGenerator =
59
-            function (int $iterations, int $i = 1): \Generator {
59
+            function(int $iterations, int $i = 1): \Generator {
60 60
                 while ($i <= $iterations) {
61 61
                     yield $i++;
62 62
                 }
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
     {
81 81
         if ($iterations < self::MIN_ITERATIONS) {
82 82
             throw new \RuntimeException(
83
-                __CLASS__ .
84
-                ': Number of Iterations should be greater then ' .
83
+                __CLASS__.
84
+                ': Number of Iterations should be greater then '.
85 85
                 self::MIN_ITERATIONS
86 86
             );
87 87
         }
Please login to merge, or discard this patch.