coveo-1.0.0-alpha1/modules/coveo_secured_search/src/Plugin/CoveoCustomSecurityProviderManagerInterface.php
modules/coveo_secured_search/src/Plugin/CoveoCustomSecurityProviderManagerInterface.php
<?php
declare(strict_types=1);
namespace Drupal\coveo_secured_search\Plugin;
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 CoveoCustomSecurityProviderManagerInterface extends PluginManagerInterface, CachedDiscoveryInterface, CacheableDependencyInterface {
}
