* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\Order; use OrderInvoice as InvoiceLegacy; use PrestaShop\PrestaShop\Core\Order\InvoiceInterface; /** * Invoice Helper. */ final class Invoice implements InvoiceInterface { /** * {@inheritdoc} */ public static function getByDeliveryDateInterval($dateFrom, $dateTo) { return InvoiceLegacy::getByDeliveryDateInterval($dateFrom, $dateTo); } }