Skip to content

Commit cd5c2b9

Browse files
authored
Allow $slug parameter to be null in LocaleConfig (#97)
Slug on findLocaleBySlug can be null
1 parent fac6e4a commit cd5c2b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LocaleConfig.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,11 @@ public function findDomainByLocale(string $locale): ?string
184184
/**
185185
* Find the locale that belongs to the given slug.
186186
*
187-
* @param string $slug
187+
* @param ?string $slug
188188
*
189189
* @return string|null
190190
*/
191-
public function findLocaleBySlug(string $slug): ?string
191+
public function findLocaleBySlug(?string $slug): ?string
192192
{
193193
if ($this->hasCustomDomains()) {
194194
return null;

0 commit comments

Comments
 (0)