for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Fisharebest\Localization\Locale;
use Fisharebest\Localization\Territory\TerritoryFi;
/**
* Class LocaleEnDe - English
*
* @author Greg Roach <[email protected]>
* @copyright (c) 2018 Greg Roach
* @license GPLv3+
*/
class LocaleEnFi extends LocaleEn
{
public function numberSymbols()
return array(
self::GROUP => self::NBSP,
);
}
protected function percentFormat()
return self::PLACEHOLDER . self::NBSP . self::PERCENT;
public function territory()
return new TerritoryFi();