Completed
Push — master ( 73de08...39d3cf )
by Gabor
03:53
created
src/WebHemi/Adapter/Data/PDO/PDOAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/WebHemi/Form/AbstractForm.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
             );
53 53
 
54 54
         // For simplicity in rendering (twig macro), we store it in an array.
55
-        $this->nodes[0] =& $this->form;
55
+        $this->nodes[0] = & $this->form;
56 56
         // Set a default salt for the form name. If the AutoComplete attribute is 'off', it will be added to the form's
57 57
         // name attribute. The default salt will change every hour.
58 58
         $this->salt = md5(gmdate('YmdH'));
Please login to merge, or discard this patch.