App\Services\Locale\CurrentLocale::isValidBackLocale PHP Method

isValidBackLocale() protected static method

protected static isValidBackLocale ( string $locale ) : boolean
$locale string
return boolean
    protected static function isValidBackLocale(string $locale) : bool
    {
        $backLocales = config('app.backLocales');
        return in_array($locale, $backLocales);
    }