2020-04-19 12:29:58 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-19 12:29:58 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Libraries\Currency\Conversion;
|
|
|
|
|
|
|
|
interface CurrencyConversionInterface
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
public function convert($amount, $from_currency_id, $to_currency_id, $date = null);
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public function exchangeRate($from_currency_id, $to_currency_id, $date = null);
|
|
|
|
}
|