Passed
Push — main ( e110ad...47f0cd )
by Dylan
02:09
created
src/models/Model.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.