@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | public function fetch(int $id): ?Location |
23 | 23 | { |
24 | 24 | /** @var Location|null $fetch */ |
25 | - $fetch = $this->_get('api/locations/location/' . $id); |
|
25 | + $fetch = $this->_get('api/locations/location/'.$id); |
|
26 | 26 | return $fetch; |
27 | 27 | } |
28 | 28 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | public function update(int $id, array $data): ?Location |
50 | 50 | { |
51 | 51 | /** @var Location|null $post */ |
52 | - $post = $this->_post('api/locations/location/' . $id, $data); |
|
52 | + $post = $this->_post('api/locations/location/'.$id, $data); |
|
53 | 53 | return $post; |
54 | 54 | } |
55 | 55 |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | public function fetch(int $id): ?DeliveryZone |
23 | 23 | { |
24 | 24 | /** @var DeliveryZone|null $fetch */ |
25 | - $fetch = $this->_get('api/delivery-zones/zone/' . $id); |
|
25 | + $fetch = $this->_get('api/delivery-zones/zone/'.$id); |
|
26 | 26 | return $fetch; |
27 | 27 | } |
28 | 28 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | public function update(int $id, array $data): ?DeliveryZone |
50 | 50 | { |
51 | 51 | /** @var DeliveryZone|null $post */ |
52 | - $post = $this->_post('api/delivery-zones/zone/' . $id, $data); |
|
52 | + $post = $this->_post('api/delivery-zones/zone/'.$id, $data); |
|
53 | 53 | return $post; |
54 | 54 | } |
55 | 55 |