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

LocaleEnCh::numberSymbols()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4286
cc 1
eloc 3
nc 1
nop 0
1
<?php namespace Fisharebest\Localization\Locale;
2
3
use Fisharebest\Localization\Territory\TerritoryCh;
4
5
/**
6
 * Class LocaleEnCh
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2015 Greg Roach
10
 * @license       GPLv3+
11
 */
12
class LocaleEnCh extends LocaleEn {
13
	public function territory() {
14
		return new TerritoryCh;
15
	}
16
}
17