Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Entity / EntityWithPluginCollectionInterface.php
diff --git a/web/core/lib/Drupal/Core/Entity/EntityWithPluginCollectionInterface.php b/web/core/lib/Drupal/Core/Entity/EntityWithPluginCollectionInterface.php
new file mode 100644 (file)
index 0000000..f85e38b
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+
+namespace Drupal\Core\Entity;
+
+use Drupal\Core\Plugin\ObjectWithPluginCollectionInterface;
+
+/**
+ * Provides an interface for an object using a plugin collection.
+ *
+ * @see \Drupal\Component\Plugin\LazyPluginCollection
+ *
+ * @ingroup plugin_api
+ */
+interface EntityWithPluginCollectionInterface extends EntityInterface, ObjectWithPluginCollectionInterface {
+
+}