Revert "Language names via intl library."

This commit is contained in:
RedMatrix
2014-12-31 10:43:19 +11:00
parent ae9d08267c
commit 4f35efa0ba
994 changed files with 7 additions and 498717 deletions

View File

@@ -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;
}
}