Passed
Push — master ( 8213a2...15eae7 )
by Shiyu
01:43
created
src/Standard/Tracer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
                 if ($carrier instanceof MessageInterface) {
85 85
                     $this->platform->carrier()->http($carrier)->fusedContext($spanContext);
86 86
                 } else {
87
-                    throw UnsupportedCarrierInstance::for(gettype($carrier));
87
+                    throw UnsupportedCarrierInstance::for (gettype($carrier));
88 88
                 }
89 89
                 break;
90 90
             default:
Please login to merge, or discard this patch.
src/Chips/UnsupportedHTTP.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 {
17 17
     public function http(MessageInterface $message) : Carrier
18 18
     {
19
-        throw new UnsupportedCarrierException('HTTP in ' . get_class($this));
19
+        throw new UnsupportedCarrierException('HTTP in '.get_class($this));
20 20
     }
21 21
 }
Please login to merge, or discard this patch.