/var/www/vhosts/ihelp.ro/_OLD/vendor/aura/intl/src
NameSizeModeActions
Exception/-0755rm
BasicFormatter.php9370644editdlrm
Exception.php2620644editdlrm
FormatterInterface.php5000644editdlrm
FormatterLocator.php20350644editdlrm
IntlFormatter.php23330644editdlrm
Package.php36020644editdlrm
PackageFactory.php9730644editdlrm
PackageLocator.php24170644editdlrm
PackageLocatorInterface.php8640644editdlrm
Translator.php34720644editdlrm
TranslatorFactory.php11500644editdlrm
TranslatorInterface.php4530644editdlrm
TranslatorLocator.php38100644editdlrm
TranslatorLocatorFactory.php8460644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/aura/intl/src/FormatterLocator.php (2035B)
$spec) { $this->set($name, $spec); } } /** * * Sets a formatter into the registry by name. * * @param string $name The formatter name. * * @param callable $spec A callable that returns a formatter object. * * @return void * */ public function set($name, $spec) { $this->registry[$name] = $spec; $this->converted[$name] = false; } /** * * Gets a formatter from the registry by name. * * @param string $name The formatter to retrieve. * * @return FormatterInterface A formatter object. * * @throws Exception\FormatterNotMapped * */ public function get($name) { if (! isset($this->registry[$name])) { throw new Exception\FormatterNotMapped($name); } if (! $this->converted[$name]) { $func = $this->registry[$name]; $this->registry[$name] = $func(); $this->converted[$name] = true; } return $this->registry[$name]; } }