You are here

LinkedinAuthSettingsInterface.php in Social Auth LinkedIn 8

File

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

namespace Drupal\social_auth_linkedin\Settings;


/**
 * Defines an interface for Social Auth Linkedin settings.
 */
interface LinkedinAuthSettingsInterface {

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

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

}

Interfaces

Namesort descending Description
LinkedinAuthSettingsInterface Defines an interface for Social Auth Linkedin settings.