Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 6106434

Browse files
committed
Added the full namespace to interfaces
1 parent 4817172 commit 6106434

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/book/auth-adapter.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Authentication adapters
22

33
The authentication adapters for `zend-expressive-authentication` implement the
4-
interface `AuthenticationInterface` reported below:
4+
interface `Zend\Expressive\Authentication\AuthenticationInterface` reported
5+
below:
56

67
```php
78
namespace Zend\Expressive\Authentication;

docs/book/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ delegate in the pipeline, passing a [UserInterface](https://github.com/zendframe
1111
object as attribute in the request. If the request is not authenticated, the
1212
middleware returns a `401 Unauthorized` response.
1313

14-
The `UserInterface` is defined as follows:
14+
The `Zend\Expressive\Authentication\UserInterface` is defined as follows:
1515

1616
```php
1717
namespace Zend\Expressive\Authentication;

docs/book/user-repository.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
An authentication adapter can take the information about the users from
44
different repository: a [htpasswd](https://httpd.apache.org/docs/current/programs/htpasswd.html)
55
file, a database, a custom repository, etc. We provided an interface, the
6-
`UserRepositoryInterface`, to access the user storage.
7-
8-
The `UserRepositoryInterface` is reported below:
6+
`Zend\Expressive\Authentication\UserRepositoryInterface`, to access the user
7+
storage. This interface is reported below:
98

109
```php
1110
namespace Zend\Expressive\Authentication;

0 commit comments

Comments
 (0)