summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Language/LanguageYi.php
blob: 043a074855e880eb812934610ed8fb470a57ce58 (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
<?php namespace Fisharebest\Localization;

/**
 * Class LanguageYi - Representation of the Yiddish language.
 *
 * @author    Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2015 Greg Roach
 * @license   GPLv3+
 */
class LanguageYi extends Language {
	/** {@inheritdoc} */
	public function code() {
		return 'yi';
	}

	/** {@inheritdoc} */
	public function defaultScript() {
		return new ScriptHebr;
	}

	/** {@inheritdoc} */
	public function pluralRule() {
		return new PluralRule1;
	}
}