getSkillSupportsCountries()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
if (!function_exists('getSkillSupportsCountries')) {
6
    /**
7
     * @return array
8
     */
9
    function getSkillSupportsCountries(): array
10
    {
11
        return include __DIR__ . '/../resources/iso-3166-1-alpha-3-countries-skill-supports.php';
12
    }
13
}
14
15
if (!function_exists('getSkillSupportsLanguages')) {
16
    /**
17
     * @return array
18
     */
19
    function getSkillSupportsLanguages(): array
20
    {
21
        return include __DIR__ . '/../resources/iso-6391-languages-skrill-supports.php';
22
    }
23
}
24