@@ -80,7 +80,9 @@ discard block |
||
| 80 | 80 | public function getService(): ApiService |
| 81 | 81 | { |
| 82 | 82 | foreach (ClassMap::SERVICE_MODEL as $service => $model) { |
| 83 | - if ($model === static::class) return new $service($this->getClient()); |
|
| 83 | + if ($model === static::class) { |
|
| 84 | + return new $service($this->getClient()); |
|
| 85 | + } |
|
| 84 | 86 | } |
| 85 | 87 | |
| 86 | 88 | throw new ErrorException("Could not determine which service to use for " . static::class); |
@@ -95,10 +97,14 @@ discard block |
||
| 95 | 97 | $service = $this->getService(); |
| 96 | 98 | |
| 97 | 99 | if ($this->exists()) { |
| 98 | - if (!method_exists($service, 'update')) return $this; |
|
| 100 | + if (!method_exists($service, 'update')) { |
|
| 101 | + return $this; |
|
| 102 | + } |
|
| 99 | 103 | return $service->update($this->ID, $this->toArray()); |
| 100 | 104 | } else { |
| 101 | - if (!method_exists($service, 'create')) return $this; |
|
| 105 | + if (!method_exists($service, 'create')) { |
|
| 106 | + return $this; |
|
| 107 | + } |
|
| 102 | 108 | return $service->create($this->toArray()); |
| 103 | 109 | } |
| 104 | 110 | } |