diff --git a/core/lib/Drupal/Core/Language/LanguageManager.php b/core/lib/Drupal/Core/Language/LanguageManager.php
index b4acc6a..01f1d50 100644
--- a/core/lib/Drupal/Core/Language/LanguageManager.php
+++ b/core/lib/Drupal/Core/Language/LanguageManager.php
@@ -76,12 +76,13 @@ public function setRequest(Request $request) {
    * Returns a language object for the given type.
    *
    * @param string $type
-   *   The language type, e.g. Language::TYPE_INTERFACE.
+   *   (optional) The language type, e.g. the interface or the content language.
+   *   Defaults to \Drupal\Core\Language\Language::TYPE_INTERFACE.
    *
    * @return \Drupal\Core\Language\Language
    *   A language object for the given type.
    */
-  public function getLanguage($type) {
+  public function getLanguage($type = Language::TYPE_INTERFACE) {
     if (isset($this->languages[$type])) {
       return $this->languages[$type];
     }
