/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/Package.php (3602B)
formatter = $formatter; $this->fallback = $fallback; $this->messages = $messages; } /** * * Sets the messages for this package. * * @param array $messages The messages for this package. * * @return void * */ public function setMessages(array $messages) { $this->messages = $messages; } /** * * Adds one message for this package. * * @param string $key the key of the message * * @param string $message the actual message * * @return void * */ public function addMessage($key, $message) { $this->messages[$key] = $message; } /** * * Adds new messages for this package. * * @param array $messages The messages to add in this package. * * @return void * */ public function addMessages($messages) { $this->messages = array_merge($this->messages, $messages); } /** * * Gets the messages for this package. * * @return array * */ public function getMessages() { return $this->messages; } /** * * Gets the message of the given key for this package. * * @param string $key the key of the message to return * * @return mixed The message translation string, or false if not found. * */ public function getMessage($key) { if (isset($this->messages[$key])) { return $this->messages[$key]; } return false; } /** * * Sets the formatter name for this package. * * @param string $formatter The formatter name for this package. * * @return void * */ public function setFormatter($formatter) { $this->formatter = $formatter; } /** * * Gets the formatter name for this package. * * @return string * */ public function getFormatter() { return $this->formatter; } /** * * Sets the fallback package name. * * @param string $fallback The fallback package name. * * @return void * */ public function setFallback($fallback) { $this->fallback = $fallback; } /** * * Gets the fallback package name. * * @return string * */ public function getFallback() { return $this->fallback; } }