From 39df4ff9b1e74c61f3481a115342fc69ddda70c0 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Mon, 6 Apr 2015 08:21:25 +0100 Subject: [PATCH] Clarified docblock --- src/Repositories/ClientRepositoryInterface.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Repositories/ClientRepositoryInterface.php b/src/Repositories/ClientRepositoryInterface.php index 09360909..b1f16ad4 100644 --- a/src/Repositories/ClientRepositoryInterface.php +++ b/src/Repositories/ClientRepositoryInterface.php @@ -19,10 +19,10 @@ interface ClientRepositoryInterface extends RepositoryInterface /** * Get a client * - * @param string $clientIdentifier The client's identifier - * @param string $clientSecret The client's secret (default = "null") - * @param string $redirectUri The client's redirect URI (default = "null") - * @param string $grantType The grant type used (default = "null") + * @param string $clientIdentifier The client's identifier + * @param string|null $clientSecret The client's secret + * @param string|null $redirectUri The client's redirect URI + * @param string|null $grantType The grant type used * * @return \League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface */