phpmyadmin/phpmyadmin

View on GitHub
src/Config/ConfigFile.php

Summary

Maintainability
D
2 days
Test Coverage

Method getAllowedValues has 262 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function getAllowedValues(): array
    {
        $config = Config::getInstance();

        return [
Severity: Major
Found in src/Config/ConfigFile.php - About 1 day to fix

    File ConfigFile.php has 499 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Config file management
     */
    
    
    Severity: Minor
    Found in src/Config/ConfigFile.php - About 1 day to fix

      ConfigFile has 24 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class ConfigFile
      {
          /**
           * Stores default phpMyAdmin config
           *
      Severity: Minor
      Found in src/Config/ConfigFile.php - About 2 hrs to fix

        Function set has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            public function set(string $path, mixed $value, string|null $canonicalPath = null): void
            {
                if ($canonicalPath === null) {
                    $canonicalPath = $this->getCanonicalPath($path);
                }
        Severity: Minor
        Found in src/Config/ConfigFile.php - About 55 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 getServerDSN has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getServerDSN(int $server): string
            {
                if (! isset($_SESSION[$this->id]['Servers'][$server])) {
                    return '';
                }
        Severity: Minor
        Found in src/Config/ConfigFile.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

        There are no issues that match your filters.

        Category
        Status