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

LanguageNds::defaultTerritory()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Language;
2
3
use Fisharebest\Localization\PluralRule\PluralRule1;
4
use Fisharebest\Localization\Territory\TerritoryDe;
5
6
/**
7
 * Class LanguageNds - Representation of the Low German language.
8
 *
9
 * @author    Greg Roach <[email protected]>
10
 * @copyright (c) 2018 Greg Roach
11
 * @license   GPLv3+
12
 */
13
class LanguageNds extends AbstractLanguage implements LanguageInterface {
14
	public function code() {
15
		return 'nds';
16
	}
17
18
	public function defaultTerritory() {
19
		return new TerritoryDe;
20
	}
21
22
	public function pluralRule() {
23
		return new PluralRule1;
24
	}
25
}
26