Skip to content

Commit 0c5ecc9

Browse files
Fix $this calls to static ones when relevant
1 parent 5118cbd commit 0c5ecc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ public function getLanguages(): array
15721572
$this->languages = [];
15731573
foreach ($languages as $acceptHeaderItem) {
15741574
$lang = $acceptHeaderItem->getValue();
1575-
$this->languages[] = $this->formatLocale($lang);
1575+
$this->languages[] = self::formatLocale($lang);
15761576
}
15771577
$this->languages = array_unique($this->languages);
15781578

0 commit comments

Comments
 (0)