-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathhelpers.php
51 lines (46 loc) · 1.03 KB
/
helpers.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
declare(strict_types=1);
use Rinvex\Country\CountryLoader;
use Rinvex\Country\CurrencyLoader;
if (! function_exists('country')) {
/**
* Get the country by it's ISO 3166-1 alpha-2.
*
* @param string $code
* @param bool $hydrate
*
* @return \Rinvex\Country\Country|array
*/
function country($code, $hydrate = true)
{
return CountryLoader::country($code, $hydrate);
}
}
if (! function_exists('countries')) {
/**
* Get all countries short-listed.
*
* @param bool $longlist
* @param bool $hydrate
*
* @return array
*/
function countries($longlist = false, $hydrate = false)
{
return CountryLoader::countries($longlist, $hydrate);
}
}
if (! function_exists('currencies')) {
/**
* Get all countries short-listed.
*
* @param bool $longlist
* @param bool $hydrate
*
* @return array
*/
function currencies($longlist = false)
{
return CurrencyLoader::currencies($longlist);
}
}