aboutsummaryrefslogtreecommitdiffstats
path: root/library/intl/src/Language/Language.php
diff options
context:
space:
mode:
authorKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-10-25 23:21:07 +0200
committerKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-10-29 22:00:12 +0100
commit66832c41e9fff481c20ca219b3cc0a4e53b8b551 (patch)
treeffff0bb391350ec9c8c16bcf8781bce6d866cf89 /library/intl/src/Language/Language.php
parent8e4c5db766ce23d05b8507991b04fece743147de (diff)
downloadvolse-hubzilla-66832c41e9fff481c20ca219b3cc0a4e53b8b551.tar.gz
volse-hubzilla-66832c41e9fff481c20ca219b3cc0a4e53b8b551.tar.bz2
volse-hubzilla-66832c41e9fff481c20ca219b3cc0a4e53b8b551.zip
:arrow_up: Update intl library.
Update intl library from v0.4? (2014) to v0.7.4 (2016). Use global composer autoloader now.
Diffstat (limited to 'library/intl/src/Language/Language.php')
-rw-r--r--library/intl/src/Language/Language.php91
1 files changed, 0 insertions, 91 deletions
diff --git a/library/intl/src/Language/Language.php b/library/intl/src/Language/Language.php
deleted file mode 100644
index 259b57249..000000000
--- a/library/intl/src/Language/Language.php
+++ /dev/null
@@ -1,91 +0,0 @@
-<?php
-
-namespace CommerceGuys\Intl\Language;
-
-class Language implements LanguageInterface
-{
- /**
- * The two-letter language code.
- *
- * @var string
- */
- protected $languageCode;
-
- /**
- * The language name.
- *
- * @var string
- */
- protected $name;
-
- /**
- * The language locale (i.e. "en-US").
- *
- * @var string
- */
- protected $locale;
-
- /**
- * Returns the string representation of the Language.
- *
- * @return string
- */
- public function __toString()
- {
- return $this->getLanguageCode();
- }
-
- /**
- * {@inheritdoc}
- */
- public function getLanguageCode()
- {
- return $this->languageCode;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setLanguageCode($languageCode)
- {
- $this->languageCode = $languageCode;
-
- return $this;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getName()
- {
- return $this->name;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setName($name)
- {
- $this->name = $name;
-
- return $this;
- }
-
- /**
- * {@inheritdoc}
- */
- public function getLocale()
- {
- return $this->locale;
- }
-
- /**
- * {@inheritdoc}
- */
- public function setLocale($locale)
- {
- $this->locale = $locale;
-
- return $this;
- }
-}