Test Failed
Push — main ( 4a8c7d...f86c37 )
by Dylan
14:39 queued 12:37
created
src/services/TaxCodes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public function fetch(int $id): ?TaxCode
23 23
     {
24 24
         /** @var TaxCode|null $fetch */
25
-        $fetch = $this->_get('api/tax_code/' . $id);
25
+        $fetch = $this->_get('api/tax_code/'.$id);
26 26
         return $fetch;
27 27
     }
28 28
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function update(int $id, array $data): ?TaxCode
50 50
     {
51 51
         /** @var TaxCode|null $post */
52
-        $post = $this->_post('api/tax_code/' . $id, $data);
52
+        $post = $this->_post('api/tax_code/'.$id, $data);
53 53
         return $post;
54 54
     }
55 55
 
Please login to merge, or discard this patch.