We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28977b commit deedafaCopy full SHA for deedafa
README.md
@@ -47,7 +47,7 @@ Configure the `auth` middleware at `App\Http\Kernel` with `'auth:php'`
47
The last thing you'll need is to provide your own implementation of `UserFactory` and register it in a ServiceProvider.
48
49
```
50
-final class CognitoUserFactory implements UserFactory
+final class NativeSessionUserFactory implements UserFactory
51
{
52
public function make(array $payload): ?Authenticatable
53
@@ -62,4 +62,4 @@ final class CognitoUserFactory implements UserFactory
62
In the provider:
63
64
$this->app->bind(CustomerGauge\Session\Contracts\UserFactory, App\Auth\NativeSessionUserFactory::class);
65
-```
+```
0 commit comments