/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Order
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Order/InvoiceInterface.php (1427B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Order;
use OrderInvoice;
interface InvoiceInterface
{
/**
* Return collection of Invoice.
*
* @param string $dateFrom Date From
* @param string $dateTo Date To
*
* @return array
*/
public static function getByDeliveryDateInterval($dateFrom, $dateTo);
}