InfluxOW/laravel_ddd_ecommerce

View on GitHub
app/Components/Purchasable/Abstracts/Purchasable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Components\Purchasable\Abstracts;

use Akaunting\Money\Money;

interface Purchasable
{
    public function getPurchasableData(): array;

    public function getPurchasablePrice(string $currency): Money;

    public function getPurchasablePriceDiscounted(string $currency): ?Money;
}