You are here

GoogleAuthSettingsInterface.php in Social Auth Google 8

File

src/Settings/GoogleAuthSettingsInterface.php
View source
<?php

namespace Drupal\social_auth_google\Settings;


/**
 * Defines an interface for Social Auth Google settings.
 */
interface GoogleAuthSettingsInterface {

  /**
   * Gets the client ID.
   *
   * @return string
   *   The client ID.
   */
  public function getClientId();

  /**
   * Gets the client secret.
   *
   * @return string
   *   The client secret.
   */
  public function getClientSecret();

  /**
   * Gets the Restricted domain.
   *
   * @return string
   *   The Restricted domain.
   */
  public function getRestrictedDomain();

}

Interfaces

Namesort descending Description
GoogleAuthSettingsInterface Defines an interface for Social Auth Google settings.