summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Locale/LocaleKcg.php
blob: 110214da6acaac8984ca23e9ca51692a6d7f9480 (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
<?php

namespace Fisharebest\Localization\Locale;

use Fisharebest\Localization\Language\LanguageKcg;

/**
 * Class LocaleKcg - Tyap
 *
 * @author    Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2019 Greg Roach
 * @license   GPLv3+
 */
class LocaleKcg extends AbstractLocale implements LocaleInterface
{
    public function endonym()
    {
        return 'Tyap';
    }

    public function endonymSortable()
    {
        return 'TYAP';
    }

    public function language()
    {
        return new LanguageKcg();
    }
}