sports_league-8.x-1.x-dev/modules/sl_admin_ui/src/SLAdminUIWidgetPluginInterface.php
modules/sl_admin_ui/src/SLAdminUIWidgetPluginInterface.php
<?php
namespace Drupal\sl_admin_ui;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
/**
* Defines an interface for reusable form plugins.
*/
interface SLAdminUIWidgetPluginInterface extends PluginInspectionInterface, ContainerFactoryPluginInterface {
/**
* Return the name of the reusable form plugin.
*
* @return string
* The name.
*/
public function getName(): string;
}
