@@ -20,14 +20,14 @@ |
||
20 | 20 | public function getService(int $serviceId): Service |
21 | 21 | { |
22 | 22 | return new Service( |
23 | - array_get($this->get('services/' . $serviceId), 'data', []) |
|
23 | + array_get($this->get('services/'.$serviceId), 'data', []) |
|
24 | 24 | ); |
25 | 25 | } |
26 | 26 | |
27 | 27 | public function getServiceRate(int $serviceId): ServiceRate |
28 | 28 | { |
29 | 29 | return new ServiceRate( |
30 | - array_get($this->get('services/' . $serviceId . '/rate'), 'data', []) |
|
30 | + array_get($this->get('services/'.$serviceId.'/rate'), 'data', []) |
|
31 | 31 | ); |
32 | 32 | } |
33 | 33 | } |