Skip to content

Commit 94c670b

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents e7078ca + 369243c commit 94c670b

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

src/GoogleReCaptchaV3.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ public function prepareBackgroundViewData()
7575
*/
7676
public function init()
7777
{
78-
if (!$this->getConfig()->isServiceEnabled()) {
78+
if (! $this->getConfig()->isServiceEnabled()) {
7979
return;
8080
}
8181
$default = [
8282
'hasAction' => self::$hasAction,
83-
'backgroundMode' => $this->getConfig()->shouldEnableBackgroundMode()
83+
'backgroundMode' => $this->getConfig()->shouldEnableBackgroundMode(),
8484
];
8585

8686
return app('view')->make($this->getView(), array_merge($this->prepareData(), $default));
@@ -107,7 +107,6 @@ public function render($mappers)
107107
}
108108
}
109109

110-
111110
/**
112111
* @return mixed|string
113112
*/

src/Interfaces/ReCaptchaConfigV3Interface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ public function getSkipIps();
7575
*/
7676
public function getBackgroundBadgeDisplay();
7777

78-
7978
/**
8079
* @return bool
8180
*/

tests/ViewTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public function testView1()
5050
$this->assertEquals('contact_us',$data['contact_us_id1']);
5151
}
5252

53-
5453
public function testView2()
5554
{
5655
// Create a stub for the SomeClass class.

0 commit comments

Comments
 (0)