Test Failed
Push — master ( 2a4e3b...86163b )
by Roberto
03:30
created
tests/TestCase.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -20,29 +20,29 @@
 block discarded – undo
20 20
  */
21 21
 class TestCase extends OrchestraTestCase {
22 22
 
23
-	/**
24
-	 * Load package alias
25
-	 *
26
-	 * @param  \Illuminate\Foundation\Application $app
27
-	 *
28
-	 * @return array
29
-	 */
30
-	protected function getPackageAliases($app) {
23
+    /**
24
+     * Load package alias
25
+     *
26
+     * @param  \Illuminate\Foundation\Application $app
27
+     *
28
+     * @return array
29
+     */
30
+    protected function getPackageAliases($app) {
31 31
 
32
-		return [
33
-			'ReCaptcha' => ReCaptcha::class,
34
-		];
35
-	}
32
+        return [
33
+            'ReCaptcha' => ReCaptcha::class,
34
+        ];
35
+    }
36 36
 
37
-	/**
38
-	 * Load package service provider
39
-	 *
40
-	 * @param \Illuminate\Foundation\Application $app
41
-	 *
42
-	 * @return array
43
-	 */
44
-	protected function getPackageProviders($app) {
37
+    /**
38
+     * Load package service provider
39
+     *
40
+     * @param \Illuminate\Foundation\Application $app
41
+     *
42
+     * @return array
43
+     */
44
+    protected function getPackageProviders($app) {
45 45
 
46
-		return [ReCaptchaServiceProvider::class];
47
-	}
46
+        return [ReCaptchaServiceProvider::class];
47
+    }
48 48
 }
Please login to merge, or discard this patch.
tests/ReCaptchaTest.php 1 patch
Indentation   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -20,73 +20,73 @@
 block discarded – undo
20 20
  */
21 21
 class ReCaptchaTest extends TestCase {
22 22
 
23
-	protected $recaptcha_invisible = null;
23
+    protected $recaptcha_invisible = null;
24 24
 
25
-	protected $recaptcha_v2        = null;
25
+    protected $recaptcha_v2        = null;
26 26
 
27
-	/**
28
-	 * @tests
29
-	 */
30
-	public function testHtmlScriptTagJsApiGetHtmlScriptTag() {
27
+    /**
28
+     * @tests
29
+     */
30
+    public function testHtmlScriptTagJsApiGetHtmlScriptTag() {
31 31
 
32
-		$r = ReCaptcha::htmlScriptTagJsApi();
33
-		$this->assertEquals('<script src="https://www.google.com/recaptcha/api.js" async defer></script>', $r);
34
-	}
32
+        $r = ReCaptcha::htmlScriptTagJsApi();
33
+        $this->assertEquals('<script src="https://www.google.com/recaptcha/api.js" async defer></script>', $r);
34
+    }
35 35
 
36
-	/**
37
-	 * @test
38
-	 */
39
-	public function testReCaptchaInvisibleHtmlFormButtonDefault() {
36
+    /**
37
+     * @test
38
+     */
39
+    public function testReCaptchaInvisibleHtmlFormButtonDefault() {
40 40
 
41
-		$recaptcha = $this->recaptcha_invisible;
42
-		$html_button = $recaptcha->htmlFormButton();
43
-		$this->assertEquals('<button class="g-recaptcha" data-sitekey="api_site_key" data-callback="biscolabLaravelReCaptcha">Submit</button>', $html_button);
44
-	}
41
+        $recaptcha = $this->recaptcha_invisible;
42
+        $html_button = $recaptcha->htmlFormButton();
43
+        $this->assertEquals('<button class="g-recaptcha" data-sitekey="api_site_key" data-callback="biscolabLaravelReCaptcha">Submit</button>', $html_button);
44
+    }
45 45
 
46
-	/**
47
-	 * @test
48
-	 */
49
-	public function testReCaptchaInvisibleHtmlFormButtonCustom() {
46
+    /**
47
+     * @test
48
+     */
49
+    public function testReCaptchaInvisibleHtmlFormButtonCustom() {
50 50
 
51
-		$recaptcha = $this->recaptcha_invisible;
52
-		$html_button = $recaptcha->htmlFormButton('Custom Text');
53
-		$this->assertEquals('<button class="g-recaptcha" data-sitekey="api_site_key" data-callback="biscolabLaravelReCaptcha">Custom Text</button>', $html_button);
54
-	}
51
+        $recaptcha = $this->recaptcha_invisible;
52
+        $html_button = $recaptcha->htmlFormButton('Custom Text');
53
+        $this->assertEquals('<button class="g-recaptcha" data-sitekey="api_site_key" data-callback="biscolabLaravelReCaptcha">Custom Text</button>', $html_button);
54
+    }
55 55
 
56
-	/**
57
-	 * @test
58
-	 */
59
-	public function testReCaptchaV2HtmlFormSnippet() {
56
+    /**
57
+     * @test
58
+     */
59
+    public function testReCaptchaV2HtmlFormSnippet() {
60 60
 
61
-		$recaptcha = $this->recaptcha_v2;
62
-		$html_snippet = $recaptcha->htmlFormSnippet();
63
-		$this->assertEquals('<div class="g-recaptcha" data-sitekey="api_site_key"></div>', $html_snippet);
64
-	}
61
+        $recaptcha = $this->recaptcha_v2;
62
+        $html_snippet = $recaptcha->htmlFormSnippet();
63
+        $this->assertEquals('<div class="g-recaptcha" data-sitekey="api_site_key"></div>', $html_snippet);
64
+    }
65 65
 
66
-	/**
67
-	 * @test
68
-	 * @expectedException     \Error
69
-	 */
70
-	public function testReCaptchaInvisibleHtmlFormSnippetShouldThrowError() {
66
+    /**
67
+     * @test
68
+     * @expectedException     \Error
69
+     */
70
+    public function testReCaptchaInvisibleHtmlFormSnippetShouldThrowError() {
71 71
 
72
-		$this->recaptcha_invisible->htmlFormSnippet();
73
-	}
72
+        $this->recaptcha_invisible->htmlFormSnippet();
73
+    }
74 74
 
75
-	/**
76
-	 * @test
77
-	 * @expectedException     \Error
78
-	 */
79
-	public function testReCaptchaV2htmlFormButtonShouldThrowError() {
75
+    /**
76
+     * @test
77
+     * @expectedException     \Error
78
+     */
79
+    public function testReCaptchaV2htmlFormButtonShouldThrowError() {
80 80
 
81
-		$this->recaptcha_v2->htmlFormButton();
82
-	}
81
+        $this->recaptcha_v2->htmlFormButton();
82
+    }
83 83
 
84
-	protected function setUp() {
84
+    protected function setUp() {
85 85
 
86
-		parent::setUp(); // TODO: Change the autogenerated stub
86
+        parent::setUp(); // TODO: Change the autogenerated stub
87 87
 
88
-		$this->recaptcha_invisible = new ReCaptchaBuilderInvisible('api_site_key', 'api_secret_key');
89
-		$this->recaptcha_v2 = new ReCaptchaBuilderV2('api_site_key', 'api_secret_key');
88
+        $this->recaptcha_invisible = new ReCaptchaBuilderInvisible('api_site_key', 'api_secret_key');
89
+        $this->recaptcha_v2 = new ReCaptchaBuilderV2('api_site_key', 'api_secret_key');
90 90
 
91
-	}
91
+    }
92 92
 }
93 93
\ No newline at end of file
Please login to merge, or discard this patch.
config/recaptcha.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -13,52 +13,52 @@
 block discarded – undo
13 13
  */
14 14
 return [
15 15
 
16
-	/**
17
-	 *
18
-	 * The site key
19
-	 * get site key @ www.google.com/recaptcha/admin
20
-	 *
21
-	 */
22
-	'api_site_key'                 => env('RECAPTCHA_SITE_KEY', ''),
16
+    /**
17
+     *
18
+     * The site key
19
+     * get site key @ www.google.com/recaptcha/admin
20
+     *
21
+     */
22
+    'api_site_key'                 => env('RECAPTCHA_SITE_KEY', ''),
23 23
 
24
-	/**
25
-	 *
26
-	 * The secret key
27
-	 * get secret key @ www.google.com/recaptcha/admin
28
-	 *
29
-	 */
30
-	'api_secret_key'               => env('RECAPTCHA_SECRET_KEY', ''),
24
+    /**
25
+     *
26
+     * The secret key
27
+     * get secret key @ www.google.com/recaptcha/admin
28
+     *
29
+     */
30
+    'api_secret_key'               => env('RECAPTCHA_SECRET_KEY', ''),
31 31
 
32
-	/**
33
-	 *
34
-	 * ReCATCHA version
35
-	 * Supported: "v2", "invisible", "v3",
36
-	 *
37
-	 * get more info @ https://developers.google.com/recaptcha/docs/versions
38
-	 *
39
-	 */
40
-	'version'                      => env('RECAPTCHA_DEFAULT_VERSION', 'v2'),
32
+    /**
33
+     *
34
+     * ReCATCHA version
35
+     * Supported: "v2", "invisible", "v3",
36
+     *
37
+     * get more info @ https://developers.google.com/recaptcha/docs/versions
38
+     *
39
+     */
40
+    'version'                      => env('RECAPTCHA_DEFAULT_VERSION', 'v2'),
41 41
 
42
-	/**
43
-	 *
44
-	 * IP addresses for which validation will be skipped
45
-	 *
46
-	 */
47
-	'skip_ip'                      => [],
42
+    /**
43
+     *
44
+     * IP addresses for which validation will be skipped
45
+     *
46
+     */
47
+    'skip_ip'                      => [],
48 48
 
49
-	/**
50
-	 *
51
-	 * Default route called to check the Google reCAPTCHA token
52
-	 * @since v3.2.0
53
-	 *
54
-	 */
55
-	'default_validation_route'     => env('RECAPTCHA_DEFAULT_VALIDATION_ROUTE', 'biscolab-recaptcha/validate'),
49
+    /**
50
+     *
51
+     * Default route called to check the Google reCAPTCHA token
52
+     * @since v3.2.0
53
+     *
54
+     */
55
+    'default_validation_route'     => env('RECAPTCHA_DEFAULT_VALIDATION_ROUTE', 'biscolab-recaptcha/validate'),
56 56
 
57
-	/**
58
-	 *
59
-	 * The name of the parameter used to send Google reCAPTCHA token to verify route
60
-	 * @since v3.2.0
61
-	 *
62
-	 */
63
-	'default_token_parameter_name' => env('RECAPTCHA_DEFAULT_TOKEN_PARAMETER_NAME', 'token')
57
+    /**
58
+     *
59
+     * The name of the parameter used to send Google reCAPTCHA token to verify route
60
+     * @since v3.2.0
61
+     *
62
+     */
63
+    'default_token_parameter_name' => env('RECAPTCHA_DEFAULT_TOKEN_PARAMETER_NAME', 'token')
64 64
 ];
65 65
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facades/ReCaptcha.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@
 block discarded – undo
18 18
  */
19 19
 class ReCaptcha extends Facade {
20 20
 
21
-	/**
22
-	 * Get the registered name of the component.
23
-	 *
24
-	 * @return string
25
-	 */
26
-	protected static function getFacadeAccessor() {
21
+    /**
22
+     * Get the registered name of the component.
23
+     *
24
+     * @return string
25
+     */
26
+    protected static function getFacadeAccessor() {
27 27
 
28
-		return 'recaptcha';
29
-	}
28
+        return 'recaptcha';
29
+    }
30 30
 }
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@  discard block
 block discarded – undo
11 11
 use Biscolab\ReCaptcha\Facades\ReCaptcha;
12 12
 
13 13
 if (!function_exists('recaptcha')) {
14
-	/**
15
-	 * @return Biscolab\ReCaptcha\ReCaptchaBuilder
16
-	 */
17
-	function recaptcha() {
14
+    /**
15
+     * @return Biscolab\ReCaptcha\ReCaptchaBuilder
16
+     */
17
+    function recaptcha() {
18 18
 
19
-		return app('recaptcha');
20
-	}
19
+        return app('recaptcha');
20
+    }
21 21
 }
22 22
 
23 23
 /**
@@ -29,15 +29,15 @@  discard block
 block discarded – undo
29 29
  */
30 30
 if (!function_exists('htmlScriptTagJsApi')) {
31 31
 
32
-	/**
33
-	 * @param string $formId
34
-	 *
35
-	 * @return string
36
-	 */
37
-	function htmlScriptTagJsApi($formId = ''): string {
32
+    /**
33
+     * @param string $formId
34
+     *
35
+     * @return string
36
+     */
37
+    function htmlScriptTagJsApi($formId = ''): string {
38 38
 
39
-		return ReCaptcha::htmlScriptTagJsApi($formId);
40
-	}
39
+        return ReCaptcha::htmlScriptTagJsApi($formId);
40
+    }
41 41
 }
42 42
 
43 43
 /**
@@ -49,15 +49,15 @@  discard block
 block discarded – undo
49 49
  */
50 50
 if (!function_exists('htmlScriptTagJsApiV3')) {
51 51
 
52
-	/**
53
-	 * @param array $config
54
-	 *
55
-	 * @return string
56
-	 */
57
-	function htmlScriptTagJsApiV3($config = []): string {
52
+    /**
53
+     * @param array $config
54
+     *
55
+     * @return string
56
+     */
57
+    function htmlScriptTagJsApiV3($config = []): string {
58 58
 
59
-		return ReCaptcha::htmlScriptTagJsApiV3($config);
60
-	}
59
+        return ReCaptcha::htmlScriptTagJsApiV3($config);
60
+    }
61 61
 }
62 62
 
63 63
 /**
@@ -71,15 +71,15 @@  discard block
 block discarded – undo
71 71
  */
72 72
 if (!function_exists('htmlFormButton')) {
73 73
 
74
-	/**
75
-	 * @param null|string $buttonInnerHTML
76
-	 *
77
-	 * @return string
78
-	 */
79
-	function htmlFormButton(?string $buttonInnerHTML = 'Submit'): string {
74
+    /**
75
+     * @param null|string $buttonInnerHTML
76
+     *
77
+     * @return string
78
+     */
79
+    function htmlFormButton(?string $buttonInnerHTML = 'Submit'): string {
80 80
 
81
-		return ReCaptcha::htmlFormButton($buttonInnerHTML);
82
-	}
81
+        return ReCaptcha::htmlFormButton($buttonInnerHTML);
82
+    }
83 83
 }
84 84
 
85 85
 /**
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
  */
92 92
 if (!function_exists('htmlFormSnippet')) {
93 93
 
94
-	/**
95
-	 * @return string
96
-	 */
97
-	function htmlFormSnippet(): string {
94
+    /**
95
+     * @return string
96
+     */
97
+    function htmlFormSnippet(): string {
98 98
 
99
-		return ReCaptcha::htmlFormSnippet();
100
-	}
99
+        return ReCaptcha::htmlFormSnippet();
100
+    }
101 101
 }
102 102
 
Please login to merge, or discard this patch.
src/ReCaptchaBuilderV2.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -16,25 +16,25 @@
 block discarded – undo
16 16
  */
17 17
 class ReCaptchaBuilderV2 extends ReCaptchaBuilder {
18 18
 
19
-	/**
20
-	 * ReCaptchaBuilderV2 constructor.
21
-	 *
22
-	 * @param string $api_site_key
23
-	 * @param string $api_secret_key
24
-	 */
25
-	public function __construct(string $api_site_key, string $api_secret_key) {
19
+    /**
20
+     * ReCaptchaBuilderV2 constructor.
21
+     *
22
+     * @param string $api_site_key
23
+     * @param string $api_secret_key
24
+     */
25
+    public function __construct(string $api_site_key, string $api_secret_key) {
26 26
 
27
-		parent::__construct($api_site_key, $api_secret_key, 'v2');
28
-	}
27
+        parent::__construct($api_site_key, $api_secret_key, 'v2');
28
+    }
29 29
 
30
-	/**
31
-	 * Write ReCAPTCHA HTML tag in your FORM
32
-	 * Insert before </form> tag
33
-	 * @return string
34
-	 */
35
-	public function htmlFormSnippet(): string {
30
+    /**
31
+     * Write ReCAPTCHA HTML tag in your FORM
32
+     * Insert before </form> tag
33
+     * @return string
34
+     */
35
+    public function htmlFormSnippet(): string {
36 36
 
37
-		return ($this->version == 'v2') ? '<div class="g-recaptcha" data-sitekey="' . $this->api_site_key . '"></div>' : '';
38
-	}
37
+        return ($this->version == 'v2') ? '<div class="g-recaptcha" data-sitekey="' . $this->api_site_key . '"></div>' : '';
38
+    }
39 39
 
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this 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/ReCaptchaBuilderV3.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
  */
17 17
 class ReCaptchaBuilderV3 extends ReCaptchaBuilder {
18 18
 
19
-	/**
20
-	 * ReCaptchaBuilderV3 constructor.
21
-	 *
22
-	 * @param string $api_site_key
23
-	 * @param string $api_secret_key
24
-	 */
25
-	public function __construct(string $api_site_key, string $api_secret_key) {
19
+    /**
20
+     * ReCaptchaBuilderV3 constructor.
21
+     *
22
+     * @param string $api_site_key
23
+     * @param string $api_secret_key
24
+     */
25
+    public function __construct(string $api_site_key, string $api_secret_key) {
26 26
 
27
-		parent::__construct($api_site_key, $api_secret_key, 'v3');
28
-	}
27
+        parent::__construct($api_site_key, $api_secret_key, 'v3');
28
+    }
29 29
 
30 30
 }
31 31
\ No newline at end of file
Please login to merge, or discard this patch.
src/ReCaptchaBuilderInvisible.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -16,28 +16,28 @@
 block discarded – undo
16 16
  */
17 17
 class ReCaptchaBuilderInvisible extends ReCaptchaBuilder {
18 18
 
19
-	/**
20
-	 * ReCaptchaBuilderInvisible constructor.
21
-	 *
22
-	 * @param string $api_site_key
23
-	 * @param string $api_secret_key
24
-	 */
25
-	public function __construct(string $api_site_key, string $api_secret_key) {
19
+    /**
20
+     * ReCaptchaBuilderInvisible constructor.
21
+     *
22
+     * @param string $api_site_key
23
+     * @param string $api_secret_key
24
+     */
25
+    public function __construct(string $api_site_key, string $api_secret_key) {
26 26
 
27
-		parent::__construct($api_site_key, $api_secret_key, 'invisible');
28
-	}
27
+        parent::__construct($api_site_key, $api_secret_key, 'invisible');
28
+    }
29 29
 
30
-	/**
31
-	 * Write HTML <button> tag in your HTML code
32
-	 * Insert before </form> tag
33
-	 *
34
-	 * @param string $buttonInnerHTML
35
-	 *
36
-	 * @return string
37
-	 */
38
-	public function htmlFormButton($buttonInnerHTML = 'Submit'): string {
30
+    /**
31
+     * Write HTML <button> tag in your HTML code
32
+     * Insert before </form> tag
33
+     *
34
+     * @param string $buttonInnerHTML
35
+     *
36
+     * @return string
37
+     */
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>' : '';
41
-	}
40
+        return ($this->version == 'invisible') ? '<button class="g-recaptcha" data-sitekey="' . $this->api_site_key . '" data-callback="biscolabLaravelReCaptcha">' . $buttonInnerHTML . '</button>' : '';
41
+    }
42 42
 
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this 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/ReCaptchaServiceProvider.php 2 patches
Indentation   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -19,88 +19,88 @@
 block discarded – undo
19 19
  */
20 20
 class ReCaptchaServiceProvider extends ServiceProvider {
21 21
 
22
-	/**
23
-	 * Indicates if loading of the provider is deferred.
24
-	 *
25
-	 * @var bool
26
-	 */
27
-	protected $defer = false;
28
-
29
-	/**
30
-	 *
31
-	 */
32
-	public function boot() {
33
-
34
-		$this->addValidationRule();
35
-		$this->loadRoutesFrom(__DIR__ . '/routes/routes.php');
36
-
37
-		$this->publishes([
38
-			__DIR__ . '/../config/recaptcha.php' => config_path('recaptcha.php'),
39
-		]);
40
-
41
-	}
42
-
43
-	/**
44
-	 * Extends Validator to include a recaptcha type
45
-	 */
46
-	public function addValidationRule() {
47
-
48
-		Validator::extendImplicit('recaptcha', function ($attribute, $value, $parameters, $validator) {
49
-
50
-			return app('recaptcha')->validate($value);
51
-		}, trans('validation.recaptcha'));
52
-	}
53
-
54
-	/**
55
-	 * Register the service provider.
56
-	 *
57
-	 * @return void
58
-	 */
59
-	public function register() {
60
-
61
-		$this->mergeConfigFrom(
62
-			__DIR__ . '/../config/recaptcha.php', 'recaptcha'
63
-		);
64
-
65
-		$this->registerReCaptchaBuilder();
66
-	}
67
-
68
-	/**
69
-	 * Register the HTML builder instance.
70
-	 *
71
-	 * @return void
72
-	 */
73
-	protected function registerReCaptchaBuilder() {
74
-
75
-		$this->app->singleton('recaptcha', function ($app) {
76
-
77
-			$recaptcha_class = '';
78
-
79
-			switch (config('recaptcha.version')) {
80
-				case 'v3' :
81
-					$recaptcha_class = ReCaptchaBuilderV3::class;
82
-					break;
83
-				case 'v2' :
84
-					$recaptcha_class = ReCaptchaBuilderV2::class;
85
-					break;
86
-				case 'invisible':
87
-					$recaptcha_class = ReCaptchaBuilderInvisible::class;
88
-					break;
89
-			}
90
-
91
-			return new $recaptcha_class(config('recaptcha.api_site_key'), config('recaptcha.api_secret_key'));
92
-
93
-		});
94
-	}
95
-
96
-	/**
97
-	 * Get the services provided by the provider.
98
-	 *
99
-	 * @return array
100
-	 */
101
-	public function provides() {
102
-
103
-		return ['recaptcha'];
104
-	}
22
+    /**
23
+     * Indicates if loading of the provider is deferred.
24
+     *
25
+     * @var bool
26
+     */
27
+    protected $defer = false;
28
+
29
+    /**
30
+     *
31
+     */
32
+    public function boot() {
33
+
34
+        $this->addValidationRule();
35
+        $this->loadRoutesFrom(__DIR__ . '/routes/routes.php');
36
+
37
+        $this->publishes([
38
+            __DIR__ . '/../config/recaptcha.php' => config_path('recaptcha.php'),
39
+        ]);
40
+
41
+    }
42
+
43
+    /**
44
+     * Extends Validator to include a recaptcha type
45
+     */
46
+    public function addValidationRule() {
47
+
48
+        Validator::extendImplicit('recaptcha', function ($attribute, $value, $parameters, $validator) {
49
+
50
+            return app('recaptcha')->validate($value);
51
+        }, trans('validation.recaptcha'));
52
+    }
53
+
54
+    /**
55
+     * Register the service provider.
56
+     *
57
+     * @return void
58
+     */
59
+    public function register() {
60
+
61
+        $this->mergeConfigFrom(
62
+            __DIR__ . '/../config/recaptcha.php', 'recaptcha'
63
+        );
64
+
65
+        $this->registerReCaptchaBuilder();
66
+    }
67
+
68
+    /**
69
+     * Register the HTML builder instance.
70
+     *
71
+     * @return void
72
+     */
73
+    protected function registerReCaptchaBuilder() {
74
+
75
+        $this->app->singleton('recaptcha', function ($app) {
76
+
77
+            $recaptcha_class = '';
78
+
79
+            switch (config('recaptcha.version')) {
80
+                case 'v3' :
81
+                    $recaptcha_class = ReCaptchaBuilderV3::class;
82
+                    break;
83
+                case 'v2' :
84
+                    $recaptcha_class = ReCaptchaBuilderV2::class;
85
+                    break;
86
+                case 'invisible':
87
+                    $recaptcha_class = ReCaptchaBuilderInvisible::class;
88
+                    break;
89
+            }
90
+
91
+            return new $recaptcha_class(config('recaptcha.api_site_key'), config('recaptcha.api_secret_key'));
92
+
93
+        });
94
+    }
95
+
96
+    /**
97
+     * Get the services provided by the provider.
98
+     *
99
+     * @return array
100
+     */
101
+    public function provides() {
102
+
103
+        return ['recaptcha'];
104
+    }
105 105
 
106 106
 }
Please login to merge, or discard this 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.