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

LocaleNdsNl::territory()   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\Locale;
2
3
use Fisharebest\Localization\Territory\TerritoryNl;
4
5
/**
6
 * Class LocaleNdsNl - Low German
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2018 Greg Roach
10
 * @license       GPLv3+
11
 */
12
class LocaleNdsNl extends LocaleNds implements LocaleInterface {
13
    public function territory() {
14
        return new TerritoryNl;
15
    }
16
}
17