summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Locale/LocalePtPt.php
blob: a4334b8b1e4c90e4f006034240c976e116b52cca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php namespace Fisharebest\Localization\Locale;

/**
 * Class LocalePtPt - European Portuguese
 *
 * @author        Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2015 Greg Roach
 * @license       GPLv3+
 */
class LocalePtPt extends LocalePt {
	/** {@inheritdoc} */
	public function numberSymbols() {
		return array(
			self::GROUP   => self::NBSP,
			self::DECIMAL => self::COMMA,
		);
	}
}