Accidentally used PHP 5.4 style bracket

This commit is contained in:
Alex Bilbie 2013-05-09 11:48:21 -07:00
parent c40484abb1
commit 41a7125370

View File

@ -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'];
}