for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of the Aura Project for PHP.
* @package aura/intl
* @license http://opensource.org/licenses/MIT MIT
*/
namespace Aura\Intl;
* Formatter Interface
class TranslatorLocatorFactory
{
* Returns a new TranslatorLocator.
* @return TranslatorLocator
public function newInstance()
return new TranslatorLocator(
new PackageLocator,
new FormatterLocator([
'basic' => function () {
return new \Aura\Intl\BasicFormatter;
},
'intl' => function () {
return new \Aura\Intl\IntlFormatter;
]),
new TranslatorFactory,
'en_US'
);
}