external_entity-1.0.x-dev/src/Contracts/ExternalEntityAuthenticationTypeManagerInterface.php
src/Contracts/ExternalEntityAuthenticationTypeManagerInterface.php
<?php
declare(strict_types=1);
namespace Drupal\external_entity\Contracts;
use Drupal\Component\Plugin\PluginManagerInterface;
/**
* Define the external entity authentication type manager interface.
*/
interface ExternalEntityAuthenticationTypeManagerInterface extends PluginManagerInterface {
/**
* Get plugin definition options.
*
* @return array
* An array or definition options.
*/
public function getDefinitionOptions(): array;
}
