gruene-seele/packages/shoppingcart/Contracts/InstanceIdentifier.php
2025-04-01 10:39:21 +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);
}