DerDu/SPHERE-Framework

View on GitHub
System/Database/Filter/Link/Repository/Node6.php

Summary

Maintainability
F
6 days
Test Coverage

Function outerJoin has a Cognitive Complexity of 145 (exceeds 5 allowed). Consider refactoring.
Open

    protected function outerJoin($List, $ProbeList = array(), $SearchList = array())
    {
        $Result = array();
        /** @var AbstractView $Node0 */
        foreach ($List[0] as $Node0) {
Severity: Minor
Found in System/Database/Filter/Link/Repository/Node6.php - About 2 days 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 innerJoin has a Cognitive Complexity of 78 (exceeds 5 allowed). Consider refactoring.
Open

    protected function innerJoin($List)
    {
        $Result = array();
        /** @var AbstractView $Node0 */
        foreach ($List[0] as $Node0) {
Severity: Minor
Found in System/Database/Filter/Link/Repository/Node6.php - About 1 day 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 outerJoin has 85 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function outerJoin($List, $ProbeList = array(), $SearchList = array())
    {
        $Result = array();
        /** @var AbstractView $Node0 */
        foreach ($List[0] as $Node0) {
Severity: Major
Found in System/Database/Filter/Link/Repository/Node6.php - About 3 hrs to fix

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

        protected function innerJoin($List)
        {
            $Result = array();
            /** @var AbstractView $Node0 */
            foreach ($List[0] as $Node0) {
    Severity: Minor
    Found in System/Database/Filter/Link/Repository/Node6.php - About 1 hr to fix

      Avoid deeply nested control flow statements.
      Open

                                              if (!isset($SearchList[4]) || empty($SearchList[4])) {
                                                  $Node4 = (new \ReflectionObject($ProbeList[4]->getEntity()))->newInstanceWithoutConstructor();
                                                  $Node4->__set($this->getPath(4)[0], $Key);
                                                  $MatchList = array(
                                                      $Node4
      Severity: Major
      Found in System/Database/Filter/Link/Repository/Node6.php - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                                    if (($MatchList = $this->filterNodeList($Key, $List, 5))) {
                                                        /** @var AbstractView $Node5 */
                                                        foreach ($MatchList as $Node5) {
                                                            $Result[] = array(
                                                                $Node0,
        Severity: Major
        Found in System/Database/Filter/Link/Repository/Node6.php - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                                      if (!($MatchList = $this->filterNodeList($Key, $List, 5))) {
                                                          if (!isset($SearchList[5]) || empty($SearchList[5])) {
                                                              $Node5 = (new \ReflectionObject($ProbeList[5]->getEntity()))->newInstanceWithoutConstructor();
                                                              $Node5->__set($this->getPath(5)[0], $Key);
                                                              $MatchList = array(
          Severity: Major
          Found in System/Database/Filter/Link/Repository/Node6.php - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                                        if (!empty($MatchList)) {
                                                            /** @var AbstractView $Node5 */
                                                            foreach ($MatchList as $Node5) {
                                                                $Result[] = array(
                                                                    $Node0,
            Severity: Major
            Found in System/Database/Filter/Link/Repository/Node6.php - About 45 mins to fix

              Similar blocks of code found in 21 locations. Consider refactoring.
              Open

                                                          if (!($MatchList = $this->filterNodeList($Key, $List, 5))) {
                                                              if (!isset($SearchList[5]) || empty($SearchList[5])) {
                                                                  $Node5 = (new \ReflectionObject($ProbeList[5]->getEntity()))->newInstanceWithoutConstructor();
                                                                  $Node5->__set($this->getPath(5)[0], $Key);
                                                                  $MatchList = array(
              Severity: Major
              Found in System/Database/Filter/Link/Repository/Node6.php and 20 other locations - About 1 hr to fix
              System/Database/Filter/Link/Repository/Node2.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 30..38
              System/Database/Filter/Link/Repository/Node4.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 30..38
              System/Database/Filter/Link/Repository/Node5.php on lines 43..51
              System/Database/Filter/Link/Repository/Node5.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 30..38
              System/Database/Filter/Link/Repository/Node6.php on lines 43..51
              System/Database/Filter/Link/Repository/Node6.php on lines 56..64
              System/Database/Filter/Link/Repository/Node6.php on lines 69..77
              System/Database/Filter/Link/Repository/Node7.php on lines 30..38
              System/Database/Filter/Link/Repository/Node7.php on lines 43..51
              System/Database/Filter/Link/Repository/Node7.php on lines 56..64
              System/Database/Filter/Link/Repository/Node7.php on lines 69..77
              System/Database/Filter/Link/Repository/Node7.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 95..103

              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 103.

              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

              Similar blocks of code found in 21 locations. Consider refactoring.
              Open

                          if (!($MatchList = $this->filterNodeList($Key, $List, 1))) {
                              if (!isset($SearchList[1]) || empty($SearchList[1])) {
                                  $Node1 = (new \ReflectionObject($ProbeList[1]->getEntity()))->newInstanceWithoutConstructor();
                                  $Node1->__set($this->getPath(1)[0], $Key);
                                  $MatchList = array(
              Severity: Major
              Found in System/Database/Filter/Link/Repository/Node6.php and 20 other locations - About 1 hr to fix
              System/Database/Filter/Link/Repository/Node2.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 30..38
              System/Database/Filter/Link/Repository/Node4.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 30..38
              System/Database/Filter/Link/Repository/Node5.php on lines 43..51
              System/Database/Filter/Link/Repository/Node5.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 43..51
              System/Database/Filter/Link/Repository/Node6.php on lines 56..64
              System/Database/Filter/Link/Repository/Node6.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 30..38
              System/Database/Filter/Link/Repository/Node7.php on lines 43..51
              System/Database/Filter/Link/Repository/Node7.php on lines 56..64
              System/Database/Filter/Link/Repository/Node7.php on lines 69..77
              System/Database/Filter/Link/Repository/Node7.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 95..103

              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 103.

              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

              Similar blocks of code found in 21 locations. Consider refactoring.
              Open

                                                  if (!($MatchList = $this->filterNodeList($Key, $List, 4))) {
                                                      if (!isset($SearchList[4]) || empty($SearchList[4])) {
                                                          $Node4 = (new \ReflectionObject($ProbeList[4]->getEntity()))->newInstanceWithoutConstructor();
                                                          $Node4->__set($this->getPath(4)[0], $Key);
                                                          $MatchList = array(
              Severity: Major
              Found in System/Database/Filter/Link/Repository/Node6.php and 20 other locations - About 1 hr to fix
              System/Database/Filter/Link/Repository/Node2.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 30..38
              System/Database/Filter/Link/Repository/Node4.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 30..38
              System/Database/Filter/Link/Repository/Node5.php on lines 43..51
              System/Database/Filter/Link/Repository/Node5.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 30..38
              System/Database/Filter/Link/Repository/Node6.php on lines 43..51
              System/Database/Filter/Link/Repository/Node6.php on lines 56..64
              System/Database/Filter/Link/Repository/Node6.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 30..38
              System/Database/Filter/Link/Repository/Node7.php on lines 43..51
              System/Database/Filter/Link/Repository/Node7.php on lines 56..64
              System/Database/Filter/Link/Repository/Node7.php on lines 69..77
              System/Database/Filter/Link/Repository/Node7.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 95..103

              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 103.

              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

              Similar blocks of code found in 21 locations. Consider refactoring.
              Open

                                          if (!($MatchList = $this->filterNodeList($Key, $List, 3))) {
                                              if (!isset($SearchList[3]) || empty($SearchList[3])) {
                                                  $Node3 = (new \ReflectionObject($ProbeList[3]->getEntity()))->newInstanceWithoutConstructor();
                                                  $Node3->__set($this->getPath(3)[0], $Key);
                                                  $MatchList = array(
              Severity: Major
              Found in System/Database/Filter/Link/Repository/Node6.php and 20 other locations - About 1 hr to fix
              System/Database/Filter/Link/Repository/Node2.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 30..38
              System/Database/Filter/Link/Repository/Node4.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 30..38
              System/Database/Filter/Link/Repository/Node5.php on lines 43..51
              System/Database/Filter/Link/Repository/Node5.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 30..38
              System/Database/Filter/Link/Repository/Node6.php on lines 43..51
              System/Database/Filter/Link/Repository/Node6.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 30..38
              System/Database/Filter/Link/Repository/Node7.php on lines 43..51
              System/Database/Filter/Link/Repository/Node7.php on lines 56..64
              System/Database/Filter/Link/Repository/Node7.php on lines 69..77
              System/Database/Filter/Link/Repository/Node7.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 95..103

              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 103.

              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

              Similar blocks of code found in 21 locations. Consider refactoring.
              Open

                                  if (!($MatchList = $this->filterNodeList($Key, $List, 2))) {
                                      if (!isset($SearchList[2]) || empty($SearchList[2])) {
                                          $Node2 = (new \ReflectionObject($ProbeList[2]->getEntity()))->newInstanceWithoutConstructor();
                                          $Node2->__set($this->getPath(2)[0], $Key);
                                          $MatchList = array(
              Severity: Major
              Found in System/Database/Filter/Link/Repository/Node6.php and 20 other locations - About 1 hr to fix
              System/Database/Filter/Link/Repository/Node2.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 30..38
              System/Database/Filter/Link/Repository/Node3.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 30..38
              System/Database/Filter/Link/Repository/Node4.php on lines 43..51
              System/Database/Filter/Link/Repository/Node4.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 30..38
              System/Database/Filter/Link/Repository/Node5.php on lines 43..51
              System/Database/Filter/Link/Repository/Node5.php on lines 56..64
              System/Database/Filter/Link/Repository/Node5.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 30..38
              System/Database/Filter/Link/Repository/Node6.php on lines 56..64
              System/Database/Filter/Link/Repository/Node6.php on lines 69..77
              System/Database/Filter/Link/Repository/Node6.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 30..38
              System/Database/Filter/Link/Repository/Node7.php on lines 43..51
              System/Database/Filter/Link/Repository/Node7.php on lines 56..64
              System/Database/Filter/Link/Repository/Node7.php on lines 69..77
              System/Database/Filter/Link/Repository/Node7.php on lines 82..90
              System/Database/Filter/Link/Repository/Node7.php on lines 95..103

              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 103.

              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