propelorm/Propel2

View on GitHub
src/Propel/Generator/Behavior/Versionable/VersionableBehaviorObjectBuilderModifier.php

Summary

Maintainability
D
2 days
Test Coverage

File VersionableBehaviorObjectBuilderModifier.php has 504 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 * MIT License. This file is part of the Propel package.
 * For the full copyright and license information, please view the LICENSE

    VersionableBehaviorObjectBuilderModifier has 30 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class VersionableBehaviorObjectBuilderModifier
    {
        /**
         * @var \Propel\Generator\Behavior\Versionable\VersionableBehavior
         */

      Method addPopulateFromVersion has 83 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function addPopulateFromVersion(string &$script): void
          {
              $ARclassName = $this->getActiveRecordClassName();
              $versionTable = $this->behavior->getVersionTable();
              $versionColumnName = $versionTable->getColumn($this->behavior->getParameter('version_column'))->getPhpName();

        Method addIsVersioningNecessary has 54 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function addIsVersioningNecessary(string &$script): void
            {
                $queryClassName = $this->builder->getQueryClassName();
        
                $script .= "

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

              protected function addAddVersion(string &$script): void
              {
                  $versionTable = $this->behavior->getVersionTable();
                  $versionARClassName = $this->builder->getClassNameFromBuilder($this->builder->getNewStubObjectBuilder($versionTable));
          
          

            Method addComputeDiff has 44 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                protected function addComputeDiff(string &$script): void
                {
                    $script .= "
            /**
             * Computes the diff between two versions.

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

                  protected function addAddVersion(string &$script): void
                  {
                      $versionTable = $this->behavior->getVersionTable();
                      $versionARClassName = $this->builder->getClassNameFromBuilder($this->builder->getNewStubObjectBuilder($versionTable));
              
              

              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