@@ -34,7 +34,7 @@ |
||
34 | 34 | */ |
35 | 35 | public function htmlFormSnippet(): string { |
36 | 36 | |
37 | - return ($this->version == 'v2') ? '<div class="g-recaptcha" data-sitekey="' . $this->api_site_key . '"></div>' : ''; |
|
37 | + return ($this->version == 'v2') ? '<div class="g-recaptcha" data-sitekey="'.$this->api_site_key.'"></div>' : ''; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | } |
41 | 41 | \ No newline at end of file |
@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | public function htmlFormButton($buttonInnerHTML = 'Submit'): string { |
39 | 39 | |
40 | - return ($this->version == 'invisible') ? '<button class="g-recaptcha" data-sitekey="' . $this->api_site_key . '" data-callback="biscolabLaravelReCaptcha">' . $buttonInnerHTML . '</button>' : ''; |
|
40 | + return ($this->version == 'invisible') ? '<button class="g-recaptcha" data-sitekey="'.$this->api_site_key.'" data-callback="biscolabLaravelReCaptcha">'.$buttonInnerHTML.'</button>' : ''; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | } |
44 | 44 | \ No newline at end of file |
@@ -32,10 +32,10 @@ discard block |
||
32 | 32 | public function boot() { |
33 | 33 | |
34 | 34 | $this->addValidationRule(); |
35 | - $this->loadRoutesFrom(__DIR__ . '/routes/routes.php'); |
|
35 | + $this->loadRoutesFrom(__DIR__.'/routes/routes.php'); |
|
36 | 36 | |
37 | 37 | $this->publishes([ |
38 | - __DIR__ . '/../config/recaptcha.php' => config_path('recaptcha.php'), |
|
38 | + __DIR__.'/../config/recaptcha.php' => config_path('recaptcha.php'), |
|
39 | 39 | ]); |
40 | 40 | |
41 | 41 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function addValidationRule() { |
47 | 47 | |
48 | - Validator::extendImplicit('recaptcha', function ($attribute, $value, $parameters, $validator) { |
|
48 | + Validator::extendImplicit('recaptcha', function($attribute, $value, $parameters, $validator) { |
|
49 | 49 | |
50 | 50 | return app('recaptcha')->validate($value); |
51 | 51 | }, trans('validation.recaptcha')); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | public function register() { |
60 | 60 | |
61 | 61 | $this->mergeConfigFrom( |
62 | - __DIR__ . '/../config/recaptcha.php', 'recaptcha' |
|
62 | + __DIR__.'/../config/recaptcha.php', 'recaptcha' |
|
63 | 63 | ); |
64 | 64 | |
65 | 65 | $this->registerReCaptchaBuilder(); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | protected function registerReCaptchaBuilder() { |
74 | 74 | |
75 | - $this->app->singleton('recaptcha', function ($app) { |
|
75 | + $this->app->singleton('recaptcha', function($app) { |
|
76 | 76 | |
77 | 77 | $recaptcha_class = ''; |
78 | 78 |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | public function getIpWhitelist() { |
117 | 117 | $whitelist = config('recaptcha.skip_ip', []); |
118 | 118 | |
119 | - if(!is_array($whitelist)) { |
|
119 | + if (!is_array($whitelist)) { |
|
120 | 120 | $whitelist = explode(',', $whitelist); |
121 | 121 | } |
122 | 122 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | } |
164 | 164 | $html .= '<script> |
165 | 165 | function biscolabLaravelReCaptcha(token) { |
166 | - document.getElementById("' . $formId . '").submit(); |
|
166 | + document.getElementById("' . $formId.'").submit(); |
|
167 | 167 | } |
168 | 168 | </script>'; |
169 | 169 | } |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $js_callback_catch = ($js_callback_catch) ? "{$js_callback_catch}(err)" : ''; |
188 | 188 | |
189 | 189 | $validate_function = " |
190 | - fetch('/" . config('recaptcha.default_validation_route', 'biscolab-recaptcha/validate') . "?" . config('recaptcha.default_token_parameter_name', 'token') . "=' + token, { |
|
190 | + fetch('/" . config('recaptcha.default_validation_route', 'biscolab-recaptcha/validate')."?".config('recaptcha.default_token_parameter_name', 'token')."=' + token, { |
|
191 | 191 | headers: { |
192 | 192 | \"X-Requested-With\": \"XMLHttpRequest\", |
193 | 193 | \"X-CSRF-TOKEN\": csrfToken.content |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | 'response' => $response, |
253 | 253 | ]); |
254 | 254 | |
255 | - $url = $this->api_url . '?' . $params; |
|
255 | + $url = $this->api_url.'?'.$params; |
|
256 | 256 | |
257 | 257 | if (function_exists('curl_version')) { |
258 | 258 | $curl = curl_init($url); |