devel_wizard-2.x-dev/src/Spell/SpellManagerInterface.php
src/Spell/SpellManagerInterface.php
<?php
declare(strict_types=1);
namespace Drupal\devel_wizard\Spell;
use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
/**
* @method array<string, \Drupal\devel_wizard\Spell\SpellDefinition> getDefinitions()
* @method \Drupal\devel_wizard\Spell\SpellDefinition getDefinition(string $plugin_id, bool $exception_on_invalid = TRUE)
* @method \Drupal\devel_wizard\Spell\SpellInterface createInstance($plugin_id, array $configuration = [])
*/
interface SpellManagerInterface extends CategorizingPluginManagerInterface {
// @todo Coming soon.
}
