Flarum\Locale\LocaleManager::getLocales PHP Метод

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

public getLocales ( )
    public function getLocales()
    {
        return $this->locales;
    }

Usage Example

 public function flushLocales()
 {
     $locales = array_keys($this->locales->getLocales());
     foreach ($locales as $locale) {
         $this->getLocaleCompiler($locale)->flush();
     }
 }
All Usage Examples Of Flarum\Locale\LocaleManager::getLocales