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

LocaleArEh::percentFormat()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
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\Territory\TerritoryEh;
4
5
/**
6
 * Class LocaleArEh
7
 *
8
 * @author        Greg Roach <[email protected]>
9
 * @copyright (c) 2015 Greg Roach
10
 * @license       GPLv3+
11
 */
12
class LocaleArEh extends LocaleAr {
13
	public function numberSymbols() {
14
		return array(
15
			self::GROUP    => self::COMMA,
16
			self::DECIMAL  => self::DOT,
17
			self::NEGATIVE => self::LTR_MARK . self::HYPHEN,
18
		);
19
	}
20
21
	public function territory() {
22
		return new TerritoryEh;
23
	}
24
}
25