devel_wizard-2.x-dev/templates/spell/plugin_manager/manager_interface.php.twig
templates/spell/plugin_manager/manager_interface.php.twig
<?php
declare(strict_types=1);
namespace {{ managerInterface.namespace }};
use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
/**
* @method array<string, \{{ definition.classFqn }}> getDefinitions()
* @method \{{ definition.classFqn }} getDefinition(string $plugin_id, bool $exception_on_invalid = TRUE)
* @method \{{ pluginInterface.classFqn }} createInstance($plugin_id, array $configuration = [])
*/
interface {{ managerInterface.class }} extends CategorizingPluginManagerInterface {
// @todo Coming soon.
}
