Passed
Push — master ( e4804f...72064e )
by Roberto
02:23 queued 11s
created
src/routes/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * MIT license: https://github.com/biscolab/laravel-recaptcha/blob/master/LICENSE
9 9
  */
10 10
 
11
-Route::get(config('recaptcha.default_validation_route', 'biscolab-recaptcha/validate'), function () {
11
+Route::get(config('recaptcha.default_validation_route', 'biscolab-recaptcha/validate'), function() {
12 12
 
13 13
 	$token = request()->input(config('recaptcha.default_token_parameter_name', 'token'), '');
14 14
 	$validation_response = recaptcha()->validate($token);
Please login to merge, or discard this patch.
src/ReCaptchaBuilderV2.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ReCaptchaBuilderInvisible.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ReCaptchaBuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 			}
151 151
 			$html .= '<script>
152 152
 		       function biscolabLaravelReCaptcha(token) {
153
-		         document.getElementById("' . $formId . '").submit();
153
+		         document.getElementById("' . $formId.'").submit();
154 154
 		       }
155 155
 		     </script>';
156 156
 		}
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 				$js_callback_catch = ($js_callback_catch) ? "{$js_callback_catch}(err)" : '';
175 175
 
176 176
 				$validate_function = "
177
-                fetch('/" . config('recaptcha.default_validation_route', 'biscolab-recaptcha/validate') . "?" . config('recaptcha.default_token_parameter_name', 'token') . "=' + token, {
177
+                fetch('/" . config('recaptcha.default_validation_route', 'biscolab-recaptcha/validate')."?".config('recaptcha.default_token_parameter_name', 'token')."=' + token, {
178 178
                     headers: {
179 179
                         \"X-Requested-With\": \"XMLHttpRequest\",
180 180
                         \"X-CSRF-TOKEN\": csrfToken.content
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 			'response' => $response,
231 231
 		]);
232 232
 
233
-		$url = $this->api_url . '?' . $params;
233
+		$url = $this->api_url.'?'.$params;
234 234
 
235 235
 		if (function_exists('curl_version')) {
236 236
 			$curl = curl_init($url);
Please login to merge, or discard this patch.
src/ReCaptchaServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.