Completed
Push — master ( 531b96...098e87 )
by Stephen
03:06
created
src/StarCitizens.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 {
Please login to merge, or discard this patch.