Passed
Push — master ( f7b3bd...77f419 )
by Evgenii
03:11 queued 11s
created
src/OrderStatusDispatcher.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,9 @@
 block discarded – undo
59 59
      */
60 60
     public function isItemReturned($barcode): ?bool
61 61
     {
62
-        if (isset($this->items[$barcode]))
63
-            return $this->items[$barcode]->isReturned();
62
+        if (isset($this->items[$barcode])) {
63
+                    return $this->items[$barcode]->isReturned();
64
+        }
64 65
         return null;
65 66
     }
66 67
 
Please login to merge, or discard this patch.