commerce_shipping-8.x-2.0-rc2/src/Plugin/Commerce/PromotionOffer/ShipmentPromotionOfferInterface.php
src/Plugin/Commerce/PromotionOffer/ShipmentPromotionOfferInterface.php
<?php namespace Drupal\commerce_shipping\Plugin\Commerce\PromotionOffer; use Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\PromotionOfferInterface; /** * Defines the interface for shipment offers. */ interface ShipmentPromotionOfferInterface extends PromotionOfferInterface { /** * Gets whether the offer is display inclusive. * * @return bool * TRUE if the offer is display inclusive, FALSE otherwise. */ public function isDisplayInclusive(); }