Completed
Push — develop ( 263917...a162e3 )
by Greg
07:31
created

LocaleDeAt::endonymSortable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Locale;
2
3
use Fisharebest\Localization\Territory\TerritoryAt;
4
5
/**
6
 * Class LocaleDeAt - Austrian German
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2015 Greg Roach
10
 * @license       GPLv3+
11
 */
12
class LocaleDeAt extends LocaleDe {
13
	public function endonym() {
14
		return 'Österreichisches Deutsch';
15
	}
16
17
	public function endonymSortable() {
18
		return 'OSTERREICHISCHES DEUTSCH';
19
	}
20
21
	public function numberSymbols() {
22
		return array(
23
				self::GROUP   => self::NBSP,
24
				self::DECIMAL => self::COMMA,
25
		);
26
	}
27
28
	public function territory() {
29
		return new TerritoryAt;
30
	}
31
}
32