qcubed/framework

View on GitHub
includes/base_controls/QDropZoneGrouping.class.php

Summary

Maintainability
A
25 mins
Test Coverage

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

        public function Render() {
            if ($this->blnModified) {
                $strToReturn = '';
                foreach ($this->objControlArray as $objControl) {
                    if ($objControl->Rendered)
Severity: Minor
Found in includes/base_controls/QDropZoneGrouping.class.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

The method __construct has a boolean flag argument $blnAllowSelfParent, which is a certain sign of a Single Responsibility Principle violation.
Open

        public function __construct(QForm $objForm, $strGroupingId, $blnAllowSelfParent = false, $blnAllowSelf = false) {

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method __construct has a boolean flag argument $blnAllowSelf, which is a certain sign of a Single Responsibility Principle violation.
Open

        public function __construct(QForm $objForm, $strGroupingId, $blnAllowSelfParent = false, $blnAllowSelf = false) {

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method Render is not named in camelCase.
Open

        public function Render() {
            if ($this->blnModified) {
                $strToReturn = '';
                foreach ($this->objControlArray as $objControl) {
                    if ($objControl->Rendered)

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

There are no issues that match your filters.

Category
Status