IProfile::getCurrencies()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
ccs 0
cts 0
cp 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SixtyEightPublishers\Application\Environment;
6
7 1
interface IProfile
8
{
9
	/**
10
	 * @return string
11
	 */
12
	public function getName() : string;
13
14
	/**
15
	 * @return array
16
	 */
17
	public function getCountries() : array;
18
19
	/**
20
	 * @return array
21
	 */
22
	public function getLanguages() : array;
23
24
	/**
25
	 * @return array
26
	 */
27
	public function getCurrencies() : array;
28
29
	/**
30
	 * @return array
31
	 */
32
	public function getDomains() : array;
33
}
34