We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 217153c + 23a68b8 commit 1c99027Copy full SHA for 1c99027
docs/book/v1/config.md
@@ -17,7 +17,7 @@ As an example of configuration:
17
```php
18
// config/autoload/authentication.global.php
19
20
-use Mezzio\Authentication\AdapterInterface;
+use Mezzio\Authentication\AuthenticationInterface;
21
use Mezzio\Authentication\Basic\BasicAccess;
22
use Mezzio\Authentication\UserRepositoryInterface;
23
use Mezzio\Authentication\UserRepository\PdoDatabase;
@@ -31,7 +31,7 @@ return [
31
32
// Tell mezzio-authentication to use the BasicAccess
33
// adapter:
34
- AdapterInterface::class => BasicAccess::class,
+ AuthenticationInterface::class => BasicAccess::class,
35
],
36
37
'authentication' => [
0 commit comments