Passed
Pull Request — master (#22)
by
unknown
06:15 queued 01:54
created
src/Convenience/Middleware/ErrorMiddleware.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
     private function createMessage(ServerRequestInterface $request, Throwable $throwable): ErrorMessage
70 70
     {
71 71
         $message = ErrorMessage::fromException($this->createException($throwable), new Timestamp())
72
-                               ->withId(Uuid::uuid4())
73
-                               ->inContext($this->createContext($request));
72
+                                ->withId(Uuid::uuid4())
73
+                                ->inContext($this->createContext($request));
74 74
 
75 75
         /** @var OpenTransaction|null $transaction */
76 76
         $transaction = $request->getAttribute(TransactionMiddleware::TRANSACTION_ATTRIBUTE);
Please login to merge, or discard this patch.
src/Convenience/OpenTransaction.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
             $this->type
115 115
         );
116 116
         $transaction = $transaction->withSpan(...$this->spanList)
117
-                                   ->inContext($this->context);
117
+                                    ->inContext($this->context);
118 118
 
119 119
         foreach ($this->markList as $group => $eventList) {
120 120
             foreach ($eventList as $event => $timestamp) {
Please login to merge, or discard this patch.