mivita/packages/shoppingcart/Contracts/InstanceIdentifier.php
Kevin Adametz bfa3bb1df4 08 2024
2024-08-05 12:05:24 +02:00

21 lines
427 B
PHP

<?php
namespace App\Packages\Shoppingcart\Contracts;
interface InstanceIdentifier
{
/**
* Get the unique identifier to load the Cart from.
*
* @return int|string
*/
public function getInstanceIdentifier($options = null);
/**
* Get the unique identifier to load the Cart from.
*
* @return int|string
*/
// public function getInstanceGlobalDiscount($options = null);
}