@@ -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 | } |
@@ -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]) |
@@ -242,7 +242,7 @@ |
||
| 242 | 242 | * @param PDOStatement $statement |
| 243 | 243 | * @param array $queryBind |
| 244 | 244 | */ |
| 245 | - private function bindValuesToStatement(PDOStatement &$statement, array $queryBind) |
|
| 245 | + private function bindValuesToStatement(PDOStatement&$statement, array $queryBind) |
|
| 246 | 246 | { |
| 247 | 247 | foreach ($queryBind as $index => $data) { |
| 248 | 248 | $paramType = PDO::PARAM_STR; |
@@ -17,7 +17,6 @@ |
||
| 17 | 17 | use GuzzleHttp\Psr7\Uri; |
| 18 | 18 | use Psr\Http\Message\ResponseInterface; |
| 19 | 19 | use Psr\Http\Message\ServerRequestInterface; |
| 20 | -use Psr\Http\Message\StreamInterface; |
|
| 21 | 20 | use WebHemi\Adapter\Http\HttpAdapterInterface; |
| 22 | 21 | |
| 23 | 22 | /** |