LocaleEnFi::numberSymbols()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Locale;
2
3
use Fisharebest\Localization\Territory\TerritoryFi;
4
5
/**
6
 * Class LocaleEnDe - English
7
 *
8
 * @author    Greg Roach <[email protected]>
9
 * @copyright (c) 2018 Greg Roach
10
 * @license   GPLv3+
11
 */
12
class LocaleEnFi extends LocaleEn
13
{
14
    public function numberSymbols()
15
    {
16
        return array(
17
            self::GROUP => self::NBSP,
18
        );
19
    }
20
21
    protected function percentFormat()
22
    {
23
        return self::PLACEHOLDER . self::NBSP . self::PERCENT;
24
    }
25
26
    public function territory()
27
    {
28
        return new TerritoryFi();
29
    }
30
}
31