class Doorkeeper::OAuth::ClientCredentials::Creator

def call(client, scopes, attributes = {})

def call(client, scopes, attributes = {})
  existing_token = nil
  if lookup_existing_token?
    existing_token = find_active_existing_token_for(client, scopes, attributes)
    return existing_token if Doorkeeper.config.reuse_access_token && existing_token&.reusable?
  end
  with_revocation(existing_token: existing_token) do
    application = client.is_a?(Doorkeeper.config.application_model) ? client : client&.application
    Doorkeeper.config.access_token_model.create_for(
      application: application,
      resource_owner: nil,
      scopes: scopes,
      **attributes,
    )
  end
end