phpmyadmin/phpmyadmin

View on GitHub
src/Plugins/Export/Helpers/Pdf.php

Summary

Maintainability
F
1 wk
Test Coverage

File Pdf.php has 550 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * PhpMyAdmin\Plugins\Export\Helpers\Pdf class
 */

Severity: Major
Found in src/Plugins/Export/Helpers/Pdf.php - About 1 day to fix

    Method getTableDef has 140 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function getTableDef(
            string $db,
            string $table,
            bool $doRelation,
            bool $doComments,
    Severity: Major
    Found in src/Plugins/Export/Helpers/Pdf.php - About 5 hrs to fix

      Function getTableDef has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring.
      Open

          public function getTableDef(
              string $db,
              string $table,
              bool $doRelation,
              bool $doComments,
      Severity: Minor
      Found in src/Plugins/Export/Helpers/Pdf.php - About 5 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

      Function mysqlReport has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
      Open

          public function mysqlReport(string $query): void
          {
              unset(
                  $this->tablewidths,
                  $this->colTitles,
      Severity: Minor
      Found in src/Plugins/Export/Helpers/Pdf.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

      Method mysqlReport has 89 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function mysqlReport(string $query): void
          {
              unset(
                  $this->tablewidths,
                  $this->colTitles,
      Severity: Major
      Found in src/Plugins/Export/Helpers/Pdf.php - About 3 hrs to fix

        Method getTriggers has 87 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getTriggers(string $db, string $table): void
            {
                $triggers = Triggers::getDetails(DatabaseInterface::getInstance(), $db, $table);
                if ($triggers === []) {
                    return; //prevents printing blank trigger list for any table
        Severity: Major
        Found in src/Plugins/Export/Helpers/Pdf.php - About 3 hrs to fix

          Function getTriggers has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
          Open

              public function getTriggers(string $db, string $table): void
              {
                  $triggers = Triggers::getDetails(DatabaseInterface::getInstance(), $db, $table);
                  if ($triggers === []) {
                      return; //prevents printing blank trigger list for any table
          Severity: Minor
          Found in src/Plugins/Export/Helpers/Pdf.php - About 3 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

          Function morepagestable has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
          Open

              public function morepagestable(int|float $lineheight = 8): void
              {
                  // some things to set and 'remember'
                  $l = $this->lMargin;
                  $startheight = $h = $this->dataY;
          Severity: Minor
          Found in src/Plugins/Export/Helpers/Pdf.php - About 2 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

          Method morepagestable has 51 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function morepagestable(int|float $lineheight = 8): void
              {
                  // some things to set and 'remember'
                  $l = $this->lMargin;
                  $startheight = $h = $this->dataY;
          Severity: Major
          Found in src/Plugins/Export/Helpers/Pdf.php - About 2 hrs to fix

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

                public function checkPageBreak(mixed $h = 0, mixed $y = '', mixed $addpage = true): bool
                {
                    if (TCPDF_STATIC::empty_string($y)) {
                        $y = $this->y;
                    }
            Severity: Minor
            Found in src/Plugins/Export/Helpers/Pdf.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 Header has 45 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function Header(): void
                {
                    $GLOBALS['maxY'] ??= null;
            
                    // We don't want automatic page breaks while generating header
            Severity: Minor
            Found in src/Plugins/Export/Helpers/Pdf.php - About 1 hr to fix

              Method checkPageBreak has 29 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function checkPageBreak(mixed $h = 0, mixed $y = '', mixed $addpage = true): bool
                  {
                      if (TCPDF_STATIC::empty_string($y)) {
                          $y = $this->y;
                      }
              Severity: Minor
              Found in src/Plugins/Export/Helpers/Pdf.php - About 1 hr to fix

                Method __construct has 7 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                        string $orientation = 'P',
                        string $unit = 'mm',
                        string $format = 'A4',
                        bool $unicode = true,
                        string $encoding = 'UTF-8',
                Severity: Major
                Found in src/Plugins/Export/Helpers/Pdf.php - About 50 mins to fix

                  Method getTableDef has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          string $db,
                          string $table,
                          bool $doRelation,
                          bool $doComments,
                          bool $doMime,
                  Severity: Minor
                  Found in src/Plugins/Export/Helpers/Pdf.php - About 35 mins to fix

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                                foreach ($data as $col => $txt) {
                                    $this->page = $currpage;
                                    $this->setXY($l, $h);
                                    if ($this->tablewidths[$col] > 0) {
                                        $this->MultiCell(
                    Severity: Major
                    Found in src/Plugins/Export/Helpers/Pdf.php and 1 other location - About 6 hrs to fix
                    src/Plugins/Export/Helpers/Pdf.php on lines 597..625

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 211.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                                foreach ($data as $col => $txt) {
                                    $this->page = $currpage;
                                    $this->setXY($l, $h);
                                    if ($this->tablewidths[$col] > 0) {
                                        $this->MultiCell(
                    Severity: Major
                    Found in src/Plugins/Export/Helpers/Pdf.php and 1 other location - About 6 hrs to fix
                    src/Plugins/Export/Helpers/Pdf.php on lines 374..402

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 211.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Identical blocks of code found in 3 locations. Consider refactoring.
                    Open

                            for ($i = $startpage; $i <= $maxpage; $i++) {
                                $this->page = $i;
                                $l = $this->lMargin;
                                $t = $i == $startpage ? $startheight : $this->tMargin;
                                $lh = $i == $maxpage ? $h : $this->h - $this->bMargin;
                    Severity: Major
                    Found in src/Plugins/Export/Helpers/Pdf.php and 2 other locations - About 2 hrs to fix
                    src/Plugins/Export/Helpers/Pdf.php on lines 279..289
                    src/Plugins/Export/Helpers/Pdf.php on lines 642..652

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 131.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Identical blocks of code found in 3 locations. Consider refactoring.
                    Open

                            for ($i = $startpage; $i <= $maxpage; $i++) {
                                $this->page = $i;
                                $l = $this->lMargin;
                                $t = $i == $startpage ? $startheight : $this->tMargin;
                                $lh = $i == $maxpage ? $h : $this->h - $this->bMargin;
                    Severity: Major
                    Found in src/Plugins/Export/Helpers/Pdf.php and 2 other locations - About 2 hrs to fix
                    src/Plugins/Export/Helpers/Pdf.php on lines 419..429
                    src/Plugins/Export/Helpers/Pdf.php on lines 642..652

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 131.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Identical blocks of code found in 3 locations. Consider refactoring.
                    Open

                            for ($i = $startpage; $i <= $maxpage; $i++) {
                                $this->page = $i;
                                $l = $this->lMargin;
                                $t = $i == $startpage ? $startheight : $this->tMargin;
                                $lh = $i == $maxpage ? $h : $this->h - $this->bMargin;
                    Severity: Major
                    Found in src/Plugins/Export/Helpers/Pdf.php and 2 other locations - About 2 hrs to fix
                    src/Plugins/Export/Helpers/Pdf.php on lines 279..289
                    src/Plugins/Export/Helpers/Pdf.php on lines 419..429

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 131.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    There are no issues that match your filters.

                    Category
                    Status