Passed
Push — develop ( efad38...adafda )
by Alec
02:51
created
src/Tools/Timer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     protected function assertStart($start): void
32 32
     {
33 33
         if (!\is_float($start)) {
34
-            throw new \RuntimeException('Start value is NOT ok. [' . typeOf($start) . ']');
34
+            throw new \RuntimeException('Start value is NOT ok. ['.typeOf($start).']');
35 35
         }
36 36
     }
37 37
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     protected function assertStop($stop): void
42 42
     {
43 43
         if (!is_float($stop)) {
44
-            throw new \RuntimeException('Stop value is NOT ok. [' . typeOf($stop) . ']');
44
+            throw new \RuntimeException('Stop value is NOT ok. ['.typeOf($stop).']');
45 45
         }
46 46
     }
47 47
 
Please login to merge, or discard this patch.
src/Tools/Reports/TimerReport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
             $this->currentValue = $reportable->getLastValue();
53 53
             $this->elapsed = $reportable->getElapsed();
54 54
         } else {
55
-            $this->wrongReportable('Instance of ' . AbstractTimer::class, $reportable);
55
+            $this->wrongReportable('Instance of '.AbstractTimer::class, $reportable);
56 56
         }
57 57
         return $this;
58 58
     }
Please login to merge, or discard this patch.
src/Tools/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
 
5 5
 // @codeCoverageIgnoreStart
6 6
 /** @internal */
7
-define(__NAMESPACE__ .'\HRTIMER_VALUE_COEFFICIENT', 1E9);
7
+define(__NAMESPACE__.'\HRTIMER_VALUE_COEFFICIENT', 1E9);
Please login to merge, or discard this patch.