From 41a712537084190d9a902b6edd0c000a32668a17 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Thu, 9 May 2013 11:48:21 -0700 Subject: [PATCH] Accidentally used PHP 5.4 style bracket --- src/League/OAuth2/Server/Grant/RefreshToken.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/League/OAuth2/Server/Grant/RefreshToken.php b/src/League/OAuth2/Server/Grant/RefreshToken.php index 6142f3f2..78e95269 100644 --- a/src/League/OAuth2/Server/Grant/RefreshToken.php +++ b/src/League/OAuth2/Server/Grant/RefreshToken.php @@ -186,7 +186,7 @@ class RefreshToken implements GrantTypeInterface { } // Check that there aren't any new scopes being included - $existingScopes = []; + $existingScopes = array(); foreach ($scopes as $s) { $existingScopes[] = $s['scope']; }