Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/GoogleReCaptchaV3.php
  • Loading branch information
RyanDaDeng committed Jan 26, 2019
2 parents 8ddf282 + 46d9ad6 commit e863303
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@ Future improvement (Will be done in 1-2 days, everything will still be compatibl
1. [Installation](#installation)
2. [Configurations](#settings)
3. [Facade Usage](#facade-usage)
4. [Badge Display](#badge-display)
5. [Blade Usage](#blade-basic-usage)
6. [Vue Usage](#vue-usage)
7. [Validation](#validation-class)
8. [Advanced Usage](#advanced-usage)
9. [Contributors](#contributors)
4. [Blade Usage](#blade-basic-usage)
5. [Vue Usage](#vue-usage)
6. [Validation](#validation-class)
7. [Advanced Usage](#advanced-usage)
8. [Contributors](#contributors)

# DEMO

Expand Down Expand Up @@ -245,7 +244,7 @@ You can also set the background reCAPTCHA as hidden or visible(bottomright):

``` php
...
'background_badge_display' => true,
'background_badge_display' => true, // if false, the badge will be invisible.
...
```

Expand Down
4 changes: 2 additions & 2 deletions src/GoogleReCaptchaV3.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function prepareBackgroundData()
{
return [
'publicKey' => $this->getConfig()->getSiteKey(),
'display' => $this->getConfig()->getBackgroundBadgeDisplay()
'display' => $this->getConfig()->getBackgroundBadgeDisplay(),
];
}

Expand All @@ -79,7 +79,7 @@ public function background()
*/
public function render($mappers = [])
{
if (!$this->getConfig()->isServiceEnabled()) {
if (! $this->getConfig()->isServiceEnabled()) {
return;
}

Expand Down

0 comments on commit e863303

Please sign in to comment.