summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Locale/LocaleChr.php
blob: 9a8d7bdd0ec764de855f3f62cb99b169d514429e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php namespace Fisharebest\Localization\Locale;

use Fisharebest\Localization\Language\LanguageChr;

/**
 * Class LocaleChr - Cherokee
 *
 * @author        Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2015 Greg Roach
 * @license       GPLv3+
 */
class LocaleChr extends AbstractLocale implements LocaleInterface {
	/** {@inheritdoc} */
	public function endonym() {
		return 'ᏣᎳᎩ';
	}

	/** {@inheritdoc} */
	public function language() {
		return new LanguageChr;
	}
}