LocaleEn150   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 15
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A numberSymbols() 0 7 1
A territory() 0 4 1
1
<?php namespace Fisharebest\Localization\Locale;
2
3
use Fisharebest\Localization\Territory\Territory150;
4
5
/**
6
 * Class LocaleEn150
7
 *
8
 * @author    Greg Roach <[email protected]>
9
 * @copyright (c) 2018 Greg Roach
10
 * @license   GPLv3+
11
 */
12
class LocaleEn150 extends LocaleEn
13
{
14
    public function numberSymbols()
15
    {
16
        return array(
17
            self::GROUP   => self::DOT,
18
            self::DECIMAL => self::COMMA,
19
        );
20
    }
21
22
    public function territory()
23
    {
24
        return new Territory150();
25
    }
26
}
27