laravel-shop/src/Contracts/Purchasable.php

15 lines
273 B
PHP
Raw Normal View History

2025-11-21 10:49:41 +00:00
<?php
namespace Blax\Shop\Contracts;
interface Purchasable
{
public function getCurrentPrice(): ?float;
public function isOnSale(): bool;
public function decreaseStock(int $quantity = 1): bool;
public function increaseStock(int $quantity = 1): void;
}