IProfile
last analyzed

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 27
c 0
b 0
f 0
ccs 1
cts 1
cp 1

5 Methods

Rating   Name   Duplication   Size   Complexity  
getName() 0 1 ?
getCountries() 0 1 ?
getLanguages() 0 1 ?
getCurrencies() 0 1 ?
getDomains() 0 1 ?
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