Skip to content
Snippets Groups Projects
Payment.php 172 B
Newer Older
<?php

namespace Hp\Patterns\Strategy;

interface Payment
{
    public function calculate(float $total, float $balanceDebt, int $monthCount, float $percentOfRate): float;
}