@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | { |
63 | 63 | $argumentCount = count($arguments); |
64 | 64 | |
65 | - if ($argumentCount > 0 && $argumentCount< 2) |
|
65 | + if ($argumentCount > 0 && $argumentCount < 2) |
|
66 | 66 | return $this->callBase($arguments[0], $name); |
67 | 67 | |
68 | 68 | if ($argumentCount == 2) { |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | private function fillModel($model, $fillData) |
204 | 204 | { |
205 | 205 | if (is_array($model)) { |
206 | - list($className, $dataRoot, $idName) =$model; |
|
206 | + list($className, $dataRoot, $idName) = $model; |
|
207 | 207 | $object = new \ReflectionClass('StarCitizen\Models\Store'); |
208 | 208 | return $object->newInstance($fillData, $className, $dataRoot, $idName); |
209 | 209 | } else { |