tanghx
Results
1
issues of
tanghx
/** * Locale * @param string|null $locale * @return void */ function locale(string $locale = null) { if (!$locale) { return Translation::getLocale(); } Translation::setLocale($locale); }