phpmyadmin/phpmyadmin

View on GitHub
src/Transformations.php

Summary

Maintainability
D
2 days
Test Coverage

Function getAvailableMimeTypes has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
Open

    public function getAvailableMimeTypes(): array
    {
        static $stack = null;

        if ($stack !== null) {
Severity: Minor
Found in src/Transformations.php - About 4 hrs 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

File Transformations.php has 299 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Set of functions used with the relation and pdf feature
 *
 * This file also provides basic functions to use in other plugins!
Severity: Minor
Found in src/Transformations.php - About 3 hrs to fix

    Method setMime has 70 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function setMime(
            string $db,
            string $table,
            string $key,
            string $mimetype,
    Severity: Major
    Found in src/Transformations.php - About 2 hrs to fix

      Function getOptions has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          public function getOptions(string $optionString): array
          {
              if ($optionString === '') {
                  return [];
              }
      Severity: Minor
      Found in src/Transformations.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

      Method getAvailableMimeTypes has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getAvailableMimeTypes(): array
          {
              static $stack = null;
      
              if ($stack !== null) {
      Severity: Minor
      Found in src/Transformations.php - About 1 hr to fix

        Method getMime has 40 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getMime(string $db, string $table, bool $strict = false, bool $fullName = false): array|null
            {
                $dbi = DatabaseInterface::getInstance();
                $relation = new Relation($dbi);
                $browserTransformationFeature = $relation->getRelationParameters()->browserTransformationFeature;
        Severity: Minor
        Found in src/Transformations.php - About 1 hr to fix

          Method setMime has 9 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                  string $db,
                  string $table,
                  string $key,
                  string $mimetype,
                  string $transformation,
          Severity: Major
          Found in src/Transformations.php - About 1 hr to fix

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

                public function setMime(
                    string $db,
                    string $table,
                    string $key,
                    string $mimetype,
            Severity: Minor
            Found in src/Transformations.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 getMime has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function getMime(string $db, string $table, bool $strict = false, bool $fullName = false): array|null
                {
                    $dbi = DatabaseInterface::getInstance();
                    $relation = new Relation($dbi);
                    $browserTransformationFeature = $relation->getRelationParameters()->browserTransformationFeature;
            Severity: Minor
            Found in src/Transformations.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