From f4a76eacb04948f88fdbca25b962501bc9b685c8 Mon Sep 17 00:00:00 2001 From: "Ting Fung Ng, Adrian" Date: Mon, 27 Jul 2015 20:08:53 +0800 Subject: [PATCH] fixed interface name typo --- implementing-storage-classes.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/implementing-storage-classes.md b/implementing-storage-classes.md index 5397b752..b467498b 100755 --- a/implementing-storage-classes.md +++ b/implementing-storage-classes.md @@ -12,15 +12,15 @@ If you are using the resource server you need to implement the following interfa * `League\OAuth2\Server\Storage\SessionInterface` - contains methods for retrieving and setting sessions * `League\OAuth2\Server\Storage\AccessTokenInterface` - contains methods for retrieving, creating and deleting access tokens -* `League\OAuth2\Server\Storage\ClientStorage` - single method to get a client -* `League\OAuth2\Server\Storage\ScopeStorage` - single method to get a scope +* `League\OAuth2\Server\Storage\ClientInterface` - single method to get a client +* `League\OAuth2\Server\Storage\ScopeInterface` - single method to get a scope If you are using the authorization server you need to implement the following interfaces: * `League\OAuth2\Server\Storage\SessionInterface` - contains methods for retrieving and setting sessions * `League\OAuth2\Server\Storage\AccessTokenInterface` - contains methods for retrieving, creating and deleting access tokens -* `League\OAuth2\Server\Storage\ClientStorage` - single method to get a client -* `League\OAuth2\Server\Storage\ScopeStorage` - single method to get a scope +* `League\OAuth2\Server\Storage\ClientInterface` - single method to get a client +* `League\OAuth2\Server\Storage\ScopeInterface` - single method to get a scope If you are using the authorization code grant you also need to implement: