@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | { |
70 | 70 | $argumentCount = count($arguments); |
71 | 71 | |
72 | - if ($argumentCount > 0 && $argumentCount< 2) { |
|
72 | + if ($argumentCount > 0 && $argumentCount < 2) { |
|
73 | 73 | list($id) = $arguments; |
74 | 74 | $action = $this->systems[$system]['base_action']; |
75 | 75 | return $this->find($id, $system, $action); |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | private function fillModel($model, $fillData) |
191 | 191 | { |
192 | 192 | if (is_array($model)) { |
193 | - list($className, $dataRoot, $idName) =$model; |
|
193 | + list($className, $dataRoot, $idName) = $model; |
|
194 | 194 | $object = new \ReflectionClass('StarCitizen\Models\Store'); |
195 | 195 | return $object->newInstance($fillData, $className, $dataRoot, $idName); |
196 | 196 | } else { |