Completed
Pull Request — master (#13)
by
unknown
08:54
created
src/Paymarket/Actions/ManagesServices.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.