/var/www/vhosts/ihelp.ro/_OLD/vendor/aura/intl/src
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];
}
}