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/Language/Language.php | 91 ---------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 library/intl/src/Language/Language.php (limited to 'library/intl/src/Language/Language.php') 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 @@ -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; - } -} -- cgit v1.2.3