We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed69c5c commit 0680c99Copy full SHA for 0680c99
1 file changed
src/Illuminate/Translation/Translator.php
@@ -456,7 +456,9 @@ protected function localeArray($locale)
456
{
457
$locales = array_filter([$locale ?: $this->locale, $this->fallback]);
458
459
- $determined = call_user_func($this->determineLocalesUsing ?: fn () => $locales, $locales);
+ $determined = call_user_func($this->determineLocalesUsing ?: fn () => $locales, $locales);
460
+
461
+ dd($determined);
462
463
return array_values(array_unique($determined));
464
}
0 commit comments