17 lines
455 B
PHP
17 lines
455 B
PHP
<?php
|
|
|
|
interface stCurrencyModelInterface
|
|
{
|
|
public function getName();
|
|
public function getShortcut();
|
|
|
|
/**
|
|
* Zwraca kwotę po przewalutowaniu
|
|
*
|
|
* @param float|string $amount Kwota
|
|
* @param bool $reversed Przelicza walutę na walutę domyślną sklepu
|
|
* @param float|string $exchange Opcjonalny kurs
|
|
* @return float|string
|
|
*/
|
|
public function exchange($amount, $reversed = false, $exchange = null);
|
|
} |