From bc314f7c52ddd468a3ce6809b1a00462626f3aac Mon Sep 17 00:00:00 2001 From: tompedals Date: Sat, 25 Oct 2014 22:43:56 +0100 Subject: [PATCH] Update ScopeStorage::get method signature to match the interface --- examples/relational/Storage/ScopeStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/relational/Storage/ScopeStorage.php b/examples/relational/Storage/ScopeStorage.php index 674fc6d9..9b50ae28 100644 --- a/examples/relational/Storage/ScopeStorage.php +++ b/examples/relational/Storage/ScopeStorage.php @@ -13,7 +13,7 @@ class ScopeStorage extends Adapter implements ScopeInterface /** * {@inheritdoc} */ - public function get($scope, $grantType = null) + public function get($scope, $grantType = null, $clientId = null) { $result = Capsule::table('oauth_scopes') ->where('id', $scope)