Completed
Push — master ( e29564...0c58a0 )
by Greg
22:41 queued 10:16
created

LocaleAng::endonymSortable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
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\Language\LanguageAng;
4
5
/**
6
 * Class LocaleAng - Anglo-Saxon / Old-English
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2016 Greg Roach
10
 * @license       GPLv3+
11
 */
12
class LocaleAng extends AbstractLocale implements LocaleInterface {
13
	public function endonym() {
14
		return 'Ænglisc';
15
	}
16
17
	public function endonymSortable() {
18
		return 'ÆNGLISC';
19
	}
20
21
	public function language() {
22
		return new LanguageAng;
23
	}
24
}
25