ConfigurableMatcherInterface.php 527 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * Contains \Drupal\linkit\ConfigurableMatcherInterface.
  5. */
  6. namespace Drupal\linkit;
  7. use Drupal\Core\Plugin\PluginFormInterface;
  8. /**
  9. * Defines the interface for configurable matchers.
  10. *
  11. * @see \Drupal\linkit\Annotation\Matcher
  12. * @see \Drupal\linkit\ConfigurableMatcherBase
  13. * @see \Drupal\linkit\MatcherInterface
  14. * @see \Drupal\linkit\MatcherBase
  15. * @see \Drupal\linkit\MatcherManager
  16. * @see plugin_api
  17. */
  18. interface ConfigurableMatcherInterface extends MatcherInterface, PluginFormInterface {
  19. }