Updated Interface Docs

Made phpdocs match expectations like null when not found and using array notation for indicating array of <object>
This commit is contained in:
rdohms
2015-03-20 11:33:03 +01:00
parent 19b64c2e65
commit b21de11429
6 changed files with 11 additions and 11 deletions

View File

@@ -23,7 +23,7 @@ interface ScopeInterface extends StorageInterface
* @param string $grantType The grant type used in the request (default = "null")
* @param string $clientId The client sending the request (default = "null")
*
* @return \League\OAuth2\Server\Entity\ScopeEntity
* @return \League\OAuth2\Server\Entity\ScopeEntity | null
*/
public function get($scope, $grantType = null, $clientId = null);
}