devel_wizard-2.x-dev/templates/spell/plugin_manager/plugin_interface.php.twig
templates/spell/plugin_manager/plugin_interface.php.twig
<?php
declare(strict_types=1);
namespace {{ pluginInterface.namespace }};
use Drupal\Component\Plugin\ConfigurableInterface;
use Drupal\Component\Plugin\PluginInspectionInterface;
/**
* @method \{{ definition.classFqn }} getPluginDefinition()
*/
interface {{ pluginInterface.class }} extends PluginInspectionInterface, ConfigurableInterface {
}
