YetiForceCompany/YetiForcePDF

View on GitHub

Showing 287 of 15,735 total issues

Refactor this function to reduce its Cognitive Complexity from 28 to the 15 allowed.
Open

    public function appendText($childDomElement, $element = null, $style = null, $parentBlock = null)
Severity: Critical
Found in lib/Layout/InlineBox.php by sonar-php

Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

See

Class "Font" has 31 methods, which is greater than 20 authorized. Split it into smaller classes.
Open

class Font extends \YetiForcePDF\Objects\Resource
Severity: Major
Found in lib/Objects/Font.php by sonar-php

A class that grows too much tends to aggregate too many responsibilities and inevitably becomes harder to understand and therefore to maintain. Above a specific threshold, it is strongly advised to refactor the class into smaller ones which focus on well defined topics.

Class "TableBox" has 39 methods, which is greater than 20 authorized. Split it into smaller classes.
Open

class TableBox extends BlockBox
Severity: Major
Found in lib/Layout/TableBox.php by sonar-php

A class that grows too much tends to aggregate too many responsibilities and inevitably becomes harder to understand and therefore to maintain. Above a specific threshold, it is strongly advised to refactor the class into smaller ones which focus on well defined topics.

Refactor this function to reduce its Cognitive Complexity from 18 to the 15 allowed.
Open

    protected function addToPreferredOthers(string $leftSpace)
Severity: Critical
Found in lib/Layout/TableBox.php by sonar-php

Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

See

Refactor this function to reduce its Cognitive Complexity from 32 to the 15 allowed.
Open

    public function spanRows()
Severity: Critical
Found in lib/Layout/TableBox.php by sonar-php

Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

See

Reduce the number of returns of this function 5, down to the maximum allowed 3.
Open

    public function getOuterHeight()

Having too many return statements in a function increases the function's essential complexity because the flow of execution is broken each time a return statement is encountered. This makes it harder to read and understand the logic of the function.

Noncompliant Code Example

With the default threshold of 3:

function myFunction(){ // Noncompliant as there are 4 return statements
  if (condition1) {
    return true;
  } else {
    if (condition2) {
      return false;
    } else {
      return true;
    }
  }
  return false;
}

Refactor this function to reduce its Cognitive Complexity from 40 to the 15 allowed.
Open

    public function divide()
Severity: Critical
Found in lib/Layout/LineBox.php by sonar-php

Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

See

Severity
Category
Status
Source
Language