coveo-1.0.0-alpha1/src/Plugin/CoveoSecurityProviderManagerInterface.php
src/Plugin/CoveoSecurityProviderManagerInterface.php
<?php
declare(strict_types=1);
namespace Drupal\coveo\Plugin;
use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
use Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface;
use Drupal\Component\Plugin\PluginManagerInterface;
use Drupal\Core\Cache\CacheableDependencyInterface;
/**
* Provides an interface for Coveo security provider manager.
*/
interface CoveoSecurityProviderManagerInterface extends PluginManagerInterface, CachedDiscoveryInterface, CacheableDependencyInterface, CategorizingPluginManagerInterface {
}
