summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Language/LanguageSeh.php
blob: 23e664a2fb8d2fa0c6a942b54a8bb44ee2c44205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

namespace Fisharebest\Localization\Language;

use Fisharebest\Localization\PluralRule\PluralRule1;
use Fisharebest\Localization\Territory\TerritoryMz;

/**
 * Class LanguageSeh - Representation of the Sena language.
 *
 * @author    Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2019 Greg Roach
 * @license   GPLv3+
 */
class LanguageSeh extends AbstractLanguage implements LanguageInterface
{
    public function code()
    {
        return 'seh';
    }

    public function defaultTerritory()
    {
        return new TerritoryMz();
    }

    public function pluralRule()
    {
        return new PluralRule1();
    }
}