Passed
Branch master (41990d)
by Gabor
03:31
created
src/WebHemi/Data/Storage/ApplicationStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
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])
Please login to merge, or discard this patch.
src/WebHemi/Data/Storage/AbstractDataStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,5 +89,5 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Data/PDO/MySQLAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.