コード例 #1
0
 public function testValidCountry()
 {
     $this->assertTrue(Locale::isValid('nl-be'));
 }
コード例 #2
0
 /**
  * Sets an validates the locale
  *
  * @param string $locale
  *
  * @return \ZalandoPHP\Configuration\GenericConfiguration
  */
 public function setLocale($locale)
 {
     Locale::isValid($locale);
     $this->locale = strtolower($locale);
     return $this;
 }