REBELinBLUE\Deployer\Console\Commands\InstallApp::getLocales PHP Метод

getLocales() приватный Метод

Gets a list of the available locales.
private getLocales ( ) : array
Результат array
    private function getLocales()
    {
        // Get the locales from the files on disk
        $locales = File::directories(base_path('resources/lang/'));
        array_walk($locales, function (&$locale) {
            $locale = basename($locale);
        });
        return $locales;
    }