LinkedinAuthSettingsInterface.php in Social Auth LinkedIn 8
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. |