Skip to content

Commit deedafa

Browse files
authored
Update README.md
1 parent d28977b commit deedafa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Configure the `auth` middleware at `App\Http\Kernel` with `'auth:php'`
4747
The last thing you'll need is to provide your own implementation of `UserFactory` and register it in a ServiceProvider.
4848

4949
```
50-
final class CognitoUserFactory implements UserFactory
50+
final class NativeSessionUserFactory implements UserFactory
5151
{
5252
public function make(array $payload): ?Authenticatable
5353
{
@@ -62,4 +62,4 @@ final class CognitoUserFactory implements UserFactory
6262
In the provider:
6363
```
6464
$this->app->bind(CustomerGauge\Session\Contracts\UserFactory, App\Auth\NativeSessionUserFactory::class);
65-
```
65+
```

0 commit comments

Comments
 (0)