commerce_product_bundle-8.x-1.x-dev/src/ProductBundleItemStorageInterface.php
src/ProductBundleItemStorageInterface.php
<?php
namespace Drupal\commerce_product_bundle;
use Drupal\Core\Entity\ContentEntityStorageInterface;
/**
* Defines the storage handler class for product bundle item entities.
*
* This extends the base storage class, adding required special handling for
* Product bundle item entities.
*
* @ingroup commerce_product_bundle
*/
interface ProductBundleItemStorageInterface extends ContentEntityStorageInterface {
}
