summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Locale/LocaleDeLi.php
blob: 305366e2a1f550304e1910ac1ef5b976dcf75f3f (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\Locale;

use Fisharebest\Localization\Territory\TerritoryLi;

/**
 * Class LocaleDeLi
 *
 * @author        Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2015 Greg Roach
 * @license       GPLv3+
 */
class LocaleDeLi extends LocaleDe {
	/** {@inheritdoc} */
	public function territory() {
		return new TerritoryLi;
	}

	/** {@inheritdoc} */
	public function numberSymbols() {
		return array(
			self::GROUP   => self::PRIME,
			self::DECIMAL => self::DOT,
		);
	}
}