@@ -52,7 +52,7 @@ |
||
52 | 52 | * @param DataEntityInterface $entity |
53 | 53 | * @param array $data |
54 | 54 | */ |
55 | - protected function populateEntity(DataEntityInterface &$entity, array $data) |
|
55 | + protected function populateEntity(DataEntityInterface&$entity, array $data) |
|
56 | 56 | { |
57 | 57 | /* @var UserEntity $entity */ |
58 | 58 | $entity->setUserId($data[$this->idKey]) |
@@ -89,5 +89,5 @@ |
||
89 | 89 | * @param DataEntityInterface $entity |
90 | 90 | * @param array $data |
91 | 91 | */ |
92 | - abstract protected function populateEntity(DataEntityInterface &$entity, array $data); |
|
92 | + abstract protected function populateEntity(DataEntityInterface&$entity, array $data); |
|
93 | 93 | } |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | { |
273 | 273 | list($columnNameOnly) = explode(' ', $column); |
274 | 274 | |
275 | - $inParameters = str_repeat('?,', $parameterCount - 1).'?'; |
|
275 | + $inParameters = str_repeat('?,', $parameterCount - 1).'?'; |
|
276 | 276 | |
277 | 277 | return $columnNameOnly.' IN ('.$inParameters.')'; |
278 | 278 | } |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * |
326 | 326 | * @codeCoverageIgnore Don't test external library. |
327 | 327 | */ |
328 | - private function bindValuesToStatement(PDOStatement &$statement, array $queryBind) |
|
328 | + private function bindValuesToStatement(PDOStatement&$statement, array $queryBind) |
|
329 | 329 | { |
330 | 330 | foreach ($queryBind as $index => $data) { |
331 | 331 | $paramType = PDO::PARAM_STR; |