Test Failed
Push — 2.x ( 445986...358314 )
by Terry
10:40
created
src/Firewall/Panel/CsrfTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         if (!empty($this->csrfField)) {
87 87
             foreach ($this->csrfField as $value) {
88 88
                 // phpcs:ignore
89
-                $string .= '<input type="hidden" name="' . $value['name'] .'" value="' . $value['value'] . '" id="csrf-field">';
89
+                $string .= '<input type="hidden" name="' . $value['name'] . '" value="' . $value['value'] . '" id="csrf-field">';
90 90
             }
91 91
         }
92 92
         return $string;
Please login to merge, or discard this patch.
src/Firewall/Captcha/ImageCaptcha.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
             'colors'       => [
114 114
                 'background' => [255, 255, 255],
115 115
                 'border'     => [153, 200, 255],
116
-                'text'       => [51,  153, 255],
116
+                'text'       => [51, 153, 255],
117 117
                 'grid'       => [153, 200, 255],
118 118
             ],
119 119
         ];
Please login to merge, or discard this patch.
src/Firewall/Captcha/ReCaptcha.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
         } else {
178 178
             $html .= '<input type="hidden" name="g-recaptcha-response" id="g-recaptcha-response" value="">';
179 179
             $html .= '<script src="https://www.google.com/recaptcha/api.js?render=' .
180
-                $this->key .'&hl=' . $this->lang . '"></script>';
180
+                $this->key . '&hl=' . $this->lang . '"></script>';
181 181
             $html .= '<script>';
182 182
             $html .= '    grecaptcha.ready(function() {';
183 183
             $html .= '        grecaptcha.execute("' . $this->key . '", {action: "homepage"}).then(function(token) {';
Please login to merge, or discard this patch.