Version 1
[yaffs-website] / web / modules / contrib / crop / src / CropStorageInterface.php
diff --git a/web/modules/contrib/crop/src/CropStorageInterface.php b/web/modules/contrib/crop/src/CropStorageInterface.php
new file mode 100644 (file)
index 0000000..68ec02a
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\crop;
+
+use Drupal\Core\Entity\EntityBundleListenerInterface;
+use Drupal\Core\Entity\Schema\DynamicallyFieldableEntityStorageSchemaInterface;
+use Drupal\Core\Entity\Sql\SqlEntityStorageInterface;
+
+/**
+ * Provides an interface defining an crop storage controller.
+ */
+interface CropStorageInterface extends SqlEntityStorageInterface, DynamicallyFieldableEntityStorageSchemaInterface, EntityBundleListenerInterface {
+
+}