LanguageSsy::defaultTerritory()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Language;
2
3
use Fisharebest\Localization\PluralRule\PluralRule1;
4
use Fisharebest\Localization\Territory\TerritoryEr;
5
6
/**
7
 * Class LanguageSsy - Representation of the Saho language.
8
 *
9
 * @author    Greg Roach <[email protected]>
10
 * @copyright (c) 2018 Greg Roach
11
 * @license   GPLv3+
12
 */
13
class LanguageSsy extends AbstractLanguage implements LanguageInterface
14
{
15
    public function code()
16
    {
17
        return 'ssy';
18
    }
19
20
    public function defaultTerritory()
21
    {
22
        return new TerritoryEr();
23
    }
24
25
    public function pluralRule()
26
    {
27
        return new PluralRule1();
28
    }
29
}
30