From cb596b0a7ac6a9a4304e27c3156aae7a90ebcb75 Mon Sep 17 00:00:00 2001 From: Adriano Rosa Date: Sat, 4 Jun 2016 18:09:33 -0300 Subject: [PATCH 1/2] fix broken link This PR address 404 link error found on installation page. --- installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation.md b/installation.md index afbc66de..9cb0c490 100755 --- a/installation.md +++ b/installation.md @@ -18,7 +18,7 @@ Ensure that you’ve set up your project to [autoload Composer-installed package Depending on [which grant](/authorization-server/which-grant/) you are implementing you will need to implement a number of repository interfaces. Each grant documentation page lists which repositories are required, and each repository interface has it's own documentation page. -The repositories are expected to return (on success) instances of [entity interfaces](https://github.com/thephpleague/oauth2-server/tree/V5-WIP/src/Entities/Interfaces); to make integration with your existing entities and models as easy as possible though, all required methods have been implemented as traits that you can use. +The repositories are expected to return (on success) instances of [entity interfaces](https://github.com/thephpleague/oauth2-server/tree/master/src/Entities); to make integration with your existing entities and models as easy as possible though, all required methods have been implemented as traits that you can use. ## Generating public and private keys From d4b549d12a21ebced43a123e1fd64d077ffb0fd1 Mon Sep 17 00:00:00 2001 From: Adriano Rosa Date: Sat, 4 Jun 2016 18:18:32 -0300 Subject: [PATCH 2/2] typo fix redundant `of keeping` text might be a typo? --- auth-server-which-grant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth-server-which-grant.md b/auth-server-which-grant.md index 0155f5c0..da2e9237 100755 --- a/auth-server-which-grant.md +++ b/auth-server-which-grant.md @@ -28,7 +28,7 @@ If you require the permission of a user to access resources you need to determin ## Client Type? -Depending on whether or not the client is capable of keeping of keeping a secret will depend on which grant the client should use. +Depending on whether or not the client is capable of keeping a secret will depend on which grant the client should use. If the client is a web application that has a server side component then you should implement the [authorization code grant](/authorization-server/auth-code-grant/).