From 66832c41e9fff481c20ca219b3cc0a4e53b8b551 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Wed, 25 Oct 2017 23:21:07 +0200 Subject: :arrow_up: Update intl library. Update intl library from v0.4? (2014) to v0.7.4 (2016). Use global composer autoloader now. --- library/intl/src/Currency/Currency.php | 168 --------------------- library/intl/src/Currency/CurrencyInterface.php | 82 ---------- library/intl/src/Currency/CurrencyRepository.php | 122 --------------- .../src/Currency/CurrencyRepositoryInterface.php | 31 ---- 4 files changed, 403 deletions(-) delete mode 100644 library/intl/src/Currency/Currency.php delete mode 100644 library/intl/src/Currency/CurrencyInterface.php delete mode 100644 library/intl/src/Currency/CurrencyRepository.php delete mode 100644 library/intl/src/Currency/CurrencyRepositoryInterface.php (limited to 'library/intl/src/Currency') diff --git a/library/intl/src/Currency/Currency.php b/library/intl/src/Currency/Currency.php deleted file mode 100644 index 6138210b5..000000000 --- a/library/intl/src/Currency/Currency.php +++ /dev/null @@ -1,168 +0,0 @@ -getCurrencyCode(); - } - - /** - * {@inheritdoc} - */ - public function getCurrencyCode() - { - return $this->currencyCode; - } - - /** - * {@inheritdoc} - */ - public function setCurrencyCode($currencyCode) - { - $this->currencyCode = $currencyCode; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getName() - { - return $this->name; - } - - /** - * {@inheritdoc} - */ - public function setName($name) - { - $this->name = $name; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getNumericCode() - { - return $this->numericCode; - } - - /** - * {@inheritdoc} - */ - public function setNumericCode($numericCode) - { - $this->numericCode = $numericCode; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getSymbol() - { - return $this->symbol; - } - - /** - * {@inheritdoc} - */ - public function setSymbol($symbol) - { - $this->symbol = $symbol; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getFractionDigits() - { - return $this->fractionDigits; - } - - /** - * {@inheritdoc} - */ - public function setFractionDigits($fractionDigits) - { - $this->fractionDigits = $fractionDigits; - - return $this; - } - - /** - * {@inheritdoc} - */ - public function getLocale() - { - return $this->locale; - } - - /** - * {@inheritdoc} - */ - public function setLocale($locale) - { - $this->locale = $locale; - - return $this; - } -} diff --git a/library/intl/src/Currency/CurrencyInterface.php b/library/intl/src/Currency/CurrencyInterface.php deleted file mode 100644 index ccd03c7e0..000000000 --- a/library/intl/src/Currency/CurrencyInterface.php +++ /dev/null @@ -1,82 +0,0 @@ -definitionPath = $definitionPath ? $definitionPath : __DIR__ . '/../../resources/currency/'; - } - - /** - * {@inheritdoc} - */ - public function get($currencyCode, $locale = null, $fallbackLocale = null) - { - $locale = $this->resolveLocale($locale, $fallbackLocale); - $definitions = $this->loadDefinitions($locale); - if (!isset($definitions[$currencyCode])) { - throw new UnknownCurrencyException($currencyCode); - } - - return $this->createCurrencyFromDefinition($definitions[$currencyCode], $locale); - } - - /** - * {@inheritdoc} - */ - public function getAll($locale = null, $fallbackLocale = null) - { - $locale = $this->resolveLocale($locale, $fallbackLocale); - $definitions = $this->loadDefinitions($locale); - $currencies = array(); - foreach ($definitions as $currencyCode => $definition) { - $currencies[$currencyCode] = $this->createCurrencyFromDefinition($definition, $locale); - } - - return $currencies; - } - - /** - * Loads the currency definitions for the provided locale. - * - * @param string $locale The desired locale. - * - * @return array - */ - protected function loadDefinitions($locale) - { - if (!isset($this->definitions[$locale])) { - $filename = $this->definitionPath . $locale . '.json'; - $this->definitions[$locale] = json_decode(file_get_contents($filename), true); - - // Make sure the base definitions have been loaded. - if (empty($this->baseDefinitions)) { - $this->baseDefinitions = json_decode(file_get_contents($this->definitionPath . 'base.json'), true); - } - // Merge-in base definitions. - foreach ($this->definitions[$locale] as $currencyCode => $definition) { - $this->definitions[$locale][$currencyCode] += $this->baseDefinitions[$currencyCode]; - } - } - - return $this->definitions[$locale]; - } - - /** - * Creates a currency object from the provided definition. - * - * @param array $definition The currency definition. - * @param string $locale The locale of the currency definition. - * - * @return Currency - */ - protected function createCurrencyFromDefinition(array $definition, $locale) - { - if (!isset($definition['fraction_digits'])) { - $definition['fraction_digits'] = 2; - } - - $currency = new Currency(); - $currency->setCurrencyCode($definition['code']); - $currency->setName($definition['name']); - $currency->setNumericCode($definition['numeric_code']); - $currency->setFractionDigits($definition['fraction_digits']); - $currency->setSymbol($definition['symbol']); - $currency->setLocale($locale); - - return $currency; - } -} diff --git a/library/intl/src/Currency/CurrencyRepositoryInterface.php b/library/intl/src/Currency/CurrencyRepositoryInterface.php deleted file mode 100644 index d72fcf137..000000000 --- a/library/intl/src/Currency/CurrencyRepositoryInterface.php +++ /dev/null @@ -1,31 +0,0 @@ -