MenaraSolutions\Geographer\Contracts\ManagerInterface::getLocale PHP Метод

getLocale() публичный Метод

public getLocale ( ) : string
Результат string
    public function getLocale();

Usage Example

Пример #1
0
 /**
  * @param string $locale
  * @return string
  */
 public function translate($locale = null)
 {
     if ($locale) {
         $this->manager->setLocale($locale);
     }
     return $this->manager->getTranslator()->translate($this, $this->manager->getLocale());
 }