propelorm/Propel2

View on GitHub
src/Propel/Generator/Behavior/ConcreteInheritance/ConcreteInheritanceBehavior.php

Summary

Maintainability
D
1 day
Test Coverage

Function modifyTable has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
Open

    public function modifyTable(): void
    {
        $table = $this->getTable();
        $parentTable = $this->getParentTable();

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 modifyTable has 70 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function modifyTable(): void
    {
        $table = $this->getTable();
        $parentTable = $this->getParentTable();

    File ConcreteInheritanceBehavior.php has 257 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

      Method addSyncParentToChild has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function addSyncParentToChild(string &$script): void
          {
              $parentTable = $this->getParentTable();
              $parentClass = $this->builder->getClassNameFromBuilder($this->builder->getNewStubObjectBuilder($parentTable));
      
      

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

            protected function addObjectGetSyncParent(string &$script): void
            {
                $parentTable = $this->getParentTable();
                $pkeys = $parentTable->getPrimaryKey();
                $cptype = $pkeys[0]->getPhpType();

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

              protected function addObjectGetSyncParent(string &$script): void
              {
                  $parentTable = $this->getParentTable();
                  $pkeys = $parentTable->getPrimaryKey();
                  $cptype = $pkeys[0]->getPhpType();

          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 addSyncParentToChild has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function addSyncParentToChild(string &$script): void
              {
                  $parentTable = $this->getParentTable();
                  $parentClass = $this->builder->getClassNameFromBuilder($this->builder->getNewStubObjectBuilder($parentTable));
          
          

          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