EntityWithPluginCollectionInterface.php 368 B

12345678910111213141516
  1. <?php
  2. namespace Drupal\Core\Entity;
  3. use Drupal\Core\Plugin\ObjectWithPluginCollectionInterface;
  4. /**
  5. * Provides an interface for an object using a plugin collection.
  6. *
  7. * @see \Drupal\Component\Plugin\LazyPluginCollection
  8. *
  9. * @ingroup plugin_api
  10. */
  11. interface EntityWithPluginCollectionInterface extends EntityInterface, ObjectWithPluginCollectionInterface {
  12. }