Drupal investigation

DataParserPluginInterface.php 336B

12345678910111213141516
  1. <?php
  2. namespace Drupal\migrate_plus;
  3. /**
  4. * Defines an interface for data parsers.
  5. *
  6. * @see \Drupal\migrate_plus\Annotation\DataParser
  7. * @see \Drupal\migrate_plus\DataParserPluginBase
  8. * @see \Drupal\migrate_plus\DataParserPluginManager
  9. * @see plugin_api
  10. */
  11. interface DataParserPluginInterface extends \Iterator, \Countable {
  12. }