FacebookAuthSettingsInterface.php in Social Auth Facebook 3.x
Same filename and directory in other branches
Namespace
Drupal\social_auth_facebook\SettingsFile
src/Settings/FacebookAuthSettingsInterface.phpView source
<?php
namespace Drupal\social_auth_facebook\Settings;
/**
* Defines the settings interface.
*/
interface FacebookAuthSettingsInterface {
/**
* Gets the application ID.
*
* @return mixed
* The application ID.
*/
public function getAppId();
/**
* Gets the application secret.
*
* @return string
* The application secret.
*/
public function getAppSecret();
/**
* Gets the graph version.
*
* @return string
* The version.
*/
public function getGraphVersion();
}
Interfaces
Name | Description |
---|---|
FacebookAuthSettingsInterface | Defines the settings interface. |