This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/library/intl/src/Language/Language.php
Stefan Parviainen 7bf7f8180d Revert "Revert "Language names via intl library.""
This reverts commit 4f35efa0ba.
2014-12-31 10:42:08 +01:00

92 lines
1.4 KiB
PHP

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