@@ -238,7 +238,7 @@ |
||
238 | 238 | */ |
239 | 239 | private function checkInArrayMatch($data, $subject) |
240 | 240 | { |
241 | - return in_array($data, (array)$subject); |
|
241 | + return in_array($data, (array) $subject); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | /** |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | } |
223 | 223 | |
224 | 224 | if (!empty($queryParams)) { |
225 | - $whereExpression = ' WHERE ' . implode(' AND ', $queryParams); |
|
225 | + $whereExpression = ' WHERE '.implode(' AND ', $queryParams); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | return $whereExpression; |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | * |
277 | 277 | * @codeCoverageIgnore Don't test external library. |
278 | 278 | */ |
279 | - private function bindValuesToStatement(PDOStatement &$statement, array $queryBind) |
|
279 | + private function bindValuesToStatement(PDOStatement&$statement, array $queryBind) |
|
280 | 280 | { |
281 | 281 | foreach ($queryBind as $index => $data) { |
282 | 282 | $paramType = PDO::PARAM_STR; |