Completed
Push — develop ( 097596...b2a605 )
by Greg
02:18
created

LocaleNds   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 2
dl 0
loc 13
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A endonym() 0 3 1
A endonymSortable() 0 3 1
A language() 0 3 1
1
<?php namespace Fisharebest\Localization\Locale;
2
3
use Fisharebest\Localization\Language\LanguageNds;
4
5
/**
6
 * Class LocaleNds - Low German
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2018 Greg Roach
10
 * @license       GPLv3+
11
 */
12
class LocaleNds extends LocaleDe implements LocaleInterface {
13
	public function endonym() {
14
		return 'Neddersass’sch';
15
	}
16
17
	public function endonymSortable() {
18
		return 'NEDDERSASS’SCH';
19
	}
20
21
	public function language() {
22
		return new LanguageNds;
23
	}
24
}
25