Admidio/admidio

View on GitHub
src/Language.php

Summary

Maintainability
C
1 day
Test Coverage

File Language.php has 285 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
namespace Admidio;

/**
 * @brief Reads language specific texts that are identified with text ids out of language xml files
Severity: Minor
Found in src/Language.php - About 2 hrs to fix

    Language has 25 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Language
    {
        public const REFERENCE_LANGUAGE = 'en'; // The ISO code of the default language that should be read if in the current language the text id is not translated
    
        /**
    Severity: Minor
    Found in src/Language.php - About 2 hrs to fix

      Function determineBrowserLanguage has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function determineBrowserLanguage(string $defaultLanguage): string
          {
              if (empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
                  return $defaultLanguage;
              }
      Severity: Minor
      Found in src/Language.php - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function addPluginLanguageFolderPaths has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          public function addPluginLanguageFolderPaths()
          {
              global $gLogger;
      
              if (!$this->pluginLanguageFoldersLoaded) {
      Severity: Minor
      Found in src/Language.php - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function searchLanguageText has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          private function searchLanguageText(array &$xmlLanguageObjects, string $languageFilePath, string $textId): string
          {
              // if not exists create a \SimpleXMLElement of the language file in the language path
              // and add it to the array of language objects
              if (!array_key_exists($languageFilePath, $xmlLanguageObjects)) {
      Severity: Minor
      Found in src/Language.php - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function getTextFromTextId has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          private function getTextFromTextId(string $textId): string
          {
              // first search text id in text-cache
              try {
                  return $this->getTextCache($textId);
      Severity: Minor
      Found in src/Language.php - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      There are no issues that match your filters.

      Category
      Status