LinkedInAuthSettingsInterface.php in Social Auth LinkedIn 3.x
Same filename and directory in other branches
Namespace
Drupal\social_auth_linkedin\SettingsFile
src/Settings/LinkedInAuthSettingsInterface.phpView 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
Name | Description |
---|---|
LinkedInAuthSettingsInterface | Defines an interface for Social Auth LinkedIn settings. |