Test Failed
Push — main ( 1d1810...62d3b7 )
by Dylan
02:46
created
src/services/Products.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     public function fetch(int $id): ?Product
37 37
     {
38 38
         /** @var Product|null $fetch */
39
-        $fetch = $this->_get('api/products/product/' . $id);
39
+        $fetch = $this->_get('api/products/product/'.$id);
40 40
         return $fetch;
41 41
     }
42 42
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     public function update(int $id, array $data): ?Product
64 64
     {
65 65
         /** @var Product|null $post */
66
-        $post = $this->_post('api/products/product' . $id, $data);
66
+        $post = $this->_post('api/products/product'.$id, $data);
67 67
         return $post;
68 68
     }
69 69
 
Please login to merge, or discard this patch.