From e7cfffefafcb3db4b5f43024e9dc56a74b731dc7 Mon Sep 17 00:00:00 2001
From: catch <catch56@gmail.com>
Date: Wed, 19 Oct 2022 21:53:08 +0100
Subject: [PATCH] Issue #3316136 by julien.sibi, flocondetoile:
 LanguageNegotiationInterface.php : function's name error in docblock

---
 core/modules/language/src/LanguageNegotiatorInterface.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/modules/language/src/LanguageNegotiatorInterface.php b/core/modules/language/src/LanguageNegotiatorInterface.php
index 5c999c7f8b85..2702c8767ab0 100644
--- a/core/modules/language/src/LanguageNegotiatorInterface.php
+++ b/core/modules/language/src/LanguageNegotiatorInterface.php
@@ -76,11 +76,11 @@
  * }
  *
  * class MyLanguageNegotiationUrl extends LanguageNegotiationUrl {
- *   public function getCurrentLanguage(Request $request = NULL) {
+ *   public function getLangcode(Request $request = NULL) {
  *     if ($request) {
  *       // Use the original URL language negotiation method to get a valid
  *       // language code.
- *       $langcode = parent::getCurrentLanguage($request);
+ *       $langcode = parent::getLangcode($request);
  *
  *       // If we are on an administrative path, override with the default
  *       language.
-- 
GitLab