aboutsummaryrefslogtreecommitdiffstats
path: root/library/intl/src/NumberFormat/NumberFormat.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-04 18:18:56 -0700
committerzotlabs <mike@macgirvin.com>2017-11-04 18:18:56 -0700
commit65bc146afa82f3f0f2e3921660189892af42c15b (patch)
treeafbe430a72f01a2ba02b05f4587cf42196c6a136 /library/intl/src/NumberFormat/NumberFormat.php
parent9630d2ef2c042c5531bf3a553317ae3bd115f3dc (diff)
parent6995d54a3cc162d87f881f6e206fa356230fd9e8 (diff)
downloadvolse-hubzilla-65bc146afa82f3f0f2e3921660189892af42c15b.tar.gz
volse-hubzilla-65bc146afa82f3f0f2e3921660189892af42c15b.tar.bz2
volse-hubzilla-65bc146afa82f3f0f2e3921660189892af42c15b.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'library/intl/src/NumberFormat/NumberFormat.php')
-rw-r--r--library/intl/src/NumberFormat/NumberFormat.php269
1 files changed, 0 insertions, 269 deletions
diff --git a/library/intl/src/NumberFormat/NumberFormat.php b/library/intl/src/NumberFormat/NumberFormat.php
deleted file mode 100644
index 0c512b7ab..000000000
--- a/library/intl/src/NumberFormat/NumberFormat.php
+++ /dev/null
@@ -1,269 +0,0 @@
-<?php
-
-namespace CommerceGuys\Intl\NumberFormat;
-
-class NumberFormat implements NumberFormatInterface
-{
- /**
- * The locale (i.e. "en_US").
- *
- * @var string
- */
- protected $locale;
-
- /**
- * The numbering system.
- *
- * @var string
- */
- protected $numberingSystem = array();
-
- /**
- * The decimal separator.
- *
- * @var string
- */
- protected $decimalSeparator = array();
-
- /**
- * The grouping separator.
- *
- * @var string
- */
- protected $groupingSeparator = array();
-
- /**
- * The plus sign.
- *
- * @var string
- */
- protected $plusSign = array();
-
- /**
- * The number symbols.
- *
- * @var string
- */
- protected $minusSign = array();
-
- /**
- * The percent sign.
- *
- * @var string
- */
- protected $percentSign = array();
-
- /**
- * The number pattern used to format decimal numbers.
- *
- * @var string
- */
- protected $decimalPattern;
-
- /**
- * The number pattern used to format percentages.
- *
- * @var string
- */
- protected $percentPattern;
-
- /**
- * The number pattern used to format currency amounts.
- *
- * @var string
- */
- protected $currencyPattern;
-
- /**
- * The number pattern used to format accounting currency amounts.
- *
- * @var string
- */
- protected $accountingCurrencyPattern;
-
- /**
- * {@inheritdoc}
- */
- public function getLocale()
- {
- return $this->locale;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setLocale($locale)
- {
- $this->locale = $locale;
-
- return $this;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getNumberingSystem()
- {
- return $this->numberingSystem;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setNumberingSystem($numberingSystem)
- {
- $this->numberingSystem = $numberingSystem;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getDecimalSeparator()
- {
- return $this->decimalSeparator;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setDecimalSeparator($decimalSeparator)
- {
- $this->decimalSeparator = $decimalSeparator;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getGroupingSeparator()
- {
- return $this->groupingSeparator;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setGroupingSeparator($groupingSeparator)
- {
- $this->groupingSeparator = $groupingSeparator;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getPlusSign()
- {
- return $this->plusSign;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setPlusSign($plusSign)
- {
- $this->plusSign = $plusSign;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getMinusSign()
- {
- return $this->minusSign;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setMinusSign($minusSign)
- {
- $this->minusSign = $minusSign;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getPercentSign()
- {
- return $this->percentSign;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setPercentSign($percentSign)
- {
- $this->percentSign = $percentSign;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getDecimalPattern()
- {
- return $this->decimalPattern;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setDecimalPattern($decimalPattern)
- {
- $this->decimalPattern = $decimalPattern;
-
- return $this;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getPercentPattern()
- {
- return $this->percentPattern;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setPercentPattern($percentPattern)
- {
- $this->percentPattern = $percentPattern;
-
- return $this;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getCurrencyPattern()
- {
- return $this->currencyPattern;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setCurrencyPattern($currencyPattern)
- {
- $this->currencyPattern = $currencyPattern;
-
- return $this;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getAccountingCurrencyPattern()
- {
- return $this->accountingCurrencyPattern;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setAccountingCurrencyPattern($accountingCurrencyPattern)
- {
- $this->accountingCurrencyPattern = $accountingCurrencyPattern;
-
- return $this;
- }
-}