coveo-1.0.0-alpha1/src/Plugin/CoveoIdentityProviderPluginInterface.php
src/Plugin/CoveoIdentityProviderPluginInterface.php
<?php
declare(strict_types=1);
namespace Drupal\coveo\Plugin;
/**
* Provides an interface for Coveo identity provider plugins.
*/
interface CoveoIdentityProviderPluginInterface {
/**
* Get the Coveo identity provider ID for this plugin.
*
* @return string
* The identity provider id.
*/
public function getIdentityProviderId(): string;
}
