edde-framework/edde-framework

View on GitHub

Showing 143 of 143 total issues

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

        static public function namespace(INode $root, string $preg) {
            foreach (NodeIterator::recursive($root, true) as $node) {
                $attributeList = $node->getAttributeList();
                foreach ($attributeList as $k => $value) {
                    if (($match = StringUtils::match($k, $preg, true)) !== null) {
Severity: Minor
Found in src/Edde/Common/Node/NodeUtils.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

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

        protected function handleSetup() {
            parent::handleSetup();
            foreach ($this->flowList as $name => $authList) {
                foreach ($authList as $authenticator) {
                    if (isset($this->authenticatorList[$authenticator]) === false) {
Severity: Minor
Found in src/Edde/Common/Identity/AuthenticatorManager.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

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

        protected function handleInit() {
            parent::handleInit();
            $this->headerList = new HeaderList();
            $this->headerList->put(HttpUtils::headerList($this->headers, false));
            $contentType = $this->headerList->getContentType();
Severity: Minor
Found in src/Edde/Common/Http/Message.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

Severity
Category
Status
Source
Language