EscolaLMS/Cart

View on GitHub
src/Models/Contracts/Base/Buyable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace EscolaLms\Cart\Models\Contracts\Base;

use Treestoneit\ShoppingCart\Buyable as BaseBuyable;

interface Buyable extends BaseBuyable
{
    public function getBuyableDescription(): string;
    public function getBuyablePrice(?array $options = null): int;
    public function getExtraFees(): int;
}