@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | /** |
123 | 123 | * Find an entity |
124 | 124 | * |
125 | - * @param $id |
|
125 | + * @param string $id |
|
126 | 126 | * @param $system |
127 | 127 | * @param $profileType |
128 | 128 | * @param bool $cache |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * @param $id |
149 | 149 | * @param $system |
150 | 150 | * @param $profileType |
151 | - * @param $cache |
|
151 | + * @param boolean $cache |
|
152 | 152 | * @return array |
153 | 153 | */ |
154 | 154 | private function getParams($id, $system, $profileType, $cache) |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | /** |
171 | 171 | * @param $response |
172 | 172 | * @param $profileType |
173 | - * @param $raw |
|
173 | + * @param boolean $raw |
|
174 | 174 | * |
175 | 175 | * @return bool|mixed |
176 | 176 | */ |
@@ -208,7 +208,7 @@ |
||
208 | 208 | private function fillModel($model, $fillData) |
209 | 209 | { |
210 | 210 | if (is_array($model)) { |
211 | - list($className, $dataRoot, $idName) =$model; |
|
211 | + list($className, $dataRoot, $idName) = $model; |
|
212 | 212 | $object = new \ReflectionClass('StarCitizen\Models\Store'); |
213 | 213 | return $object->newInstance($fillData, $className, $dataRoot, $idName); |
214 | 214 | } else { |