removed deprecated method due LV migration

Change-Id: I9b88b50bff95183639f705d7764751a0f9623212
This commit is contained in:
Sebastian Marcet 2019-01-30 15:54:38 -03:00
parent f5d5d08494
commit 392dfd3214
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ final class ApiScopeService implements IApiScopeService
public function getFriendlyScopesByName(array $scopes_names)
{
return DB::table('oauth2_api_scope')->where('active', '=', true)->whereIn('name',
$scopes_names)->lists('short_description');
$scopes_names)->pluck('short_description')->all();
}
/**