commerce-8.x-2.8/modules/promotion/src/PromotionStorageInterface.php
modules/promotion/src/PromotionStorageInterface.php
<?php
namespace Drupal\commerce_promotion;
use Drupal\Core\Entity\ContentEntityStorageInterface;
use Drupal\commerce_order\Entity\OrderInterface;
/**
* Defines the interface for promotion storage.
*/
interface PromotionStorageInterface extends ContentEntityStorageInterface {
/**
* Loads the available promotions for the given order.
*
* @param \Drupal\commerce_order\Entity\OrderInterface $order
* The order.
*
* @return \Drupal\commerce_promotion\Entity\PromotionInterface[]
* The available promotions.
*/
public function loadAvailable(OrderInterface $order);
}
