blob: eb726ddb8b945abc7be95e2f4c6428b871c094b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
namespace CommerceGuys\Intl\Currency;
/**
* Currency repository interface.
*/
interface CurrencyRepositoryInterface
{
/**
* Gets a currency matching the provided currency code.
*
* @param string $currencyCode The currency code.
* @param string $locale The locale (i.e. fr-FR).
*
* @return Currency
*/
public function get($currencyCode, $locale = null);
/**
* Gets all currencies.
*
* @param string $locale The locale (i.e. fr-FR).
*
* @return Currency[] An array of currencies, keyed by currency code.
*/
public function getAll($locale = null);
/**
* Gets a list of currencies.
*
* @param string $locale The locale (i.e. fr-FR).
*
* @return string[] An array of currency names, keyed by currency code.
*/
public function getList($locale = null);
}
|