Skip to content

Commit 98f0d9d

Browse files
authored
Format (#122)
1 parent 6bd2ea0 commit 98f0d9d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ class User extends Authenticatable
4242
{
4343
use PasswordlessLogin;
4444

45-
public function getGuardNameAttribute(): string
45+
public function getGuardNameAttribute(): string
4646
{
4747
return config('laravel-passwordless-login.user_guard');
4848
}
49-
49+
5050
public function getShouldRememberLoginAttribute(): bool
5151
{
5252
return config('laravel-passwordless-login.remember_login');
@@ -65,7 +65,7 @@ class User extends Authenticatable
6565
```
6666
If you are using the PasswordlessLogin Trait, you can generate a link using the defaults defined in the trait by simply calling `createPasswordlessLoginLink()` on the user you want to log in.
6767

68-
The biggest mistake I could see someone making with this package is creating a login link for one user and sending it to another. Please be careful and test your code. I don't want anyone getting mad at me for someone else's silliness.
68+
The biggest mistake I could see someone making with this package is creating a login link for one user and sending it to another. Please be careful and test your code. I don't want anyone getting mad at me for someone else's silliness.
6969

7070
### Configuration
7171
You can publish the config file or just set the values you want to use in your .env file:
@@ -94,7 +94,7 @@ LPL_INVALID_SIGNATURE_MESSAGE="Expired or Invalid Link"
9494

9595
`LPL_USE_ONCE` is whether you want a link to expire after first use (uses cache to store used links)
9696

97-
`LPL_INVALID_SIGNATURE_MESSAGE` is a custom message sent when we abort with a 401 status on an invalid or expired link. You can also add some custom logic on how to deal with invalid or expired links by handling `InvalidSignatureException` and `ExpiredSignatureException` in your `Handler.php` file.
97+
`LPL_INVALID_SIGNATURE_MESSAGE` is a custom message sent when we abort with a 401 status on an invalid or expired link. You can also add some custom logic on how to deal with invalid or expired links by handling `InvalidSignatureException` and `ExpiredSignatureException` in your `Handler.php` file.
9898

9999
### Reporting Issues
100100

0 commit comments

Comments
 (0)