Completed
Push — master ( e8b212...5db87b )
by Stephen
03:28
created
src/StarCitizens.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,11 +141,11 @@
 block discarded – undo
141 141
     private function fillModel($model, $fillData)
142 142
     {
143 143
         if (is_array($model)) {
144
-            list($className, $dataRoot, $idName) =$model;
144
+            list($className, $dataRoot, $idName) = $model;
145 145
             $object = new \ReflectionClass('StarCitizen\Models\Store');
146 146
             return $object->newInstance($fillData, $className, $dataRoot, $idName);
147 147
         } else {
148
-            $object = new \ReflectionClass('StarCitizen\Models' . $model);
148
+            $object = new \ReflectionClass('StarCitizen\Models'.$model);
149 149
             return $object->newInstance($fillData);
150 150
         }
151 151
     }
Please login to merge, or discard this patch.