YetiForceCompany/YetiForcePDF

View on GitHub

Showing 155 of 15,735 total issues

Method getOuterWidth has 35 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function getOuterWidth()
    {
        $box = $this->getBox();
        if (!$box->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) {
            return '0';
Severity: Minor
Found in lib/Layout/Dimensions/BoxDimensions.php - About 1 hr to fix

    Method getMaxWidth has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function getMaxWidth()
        {
            $box = $this->getBox();
            if (!$box->isForMeasurement()) {
                return '0';
    Severity: Minor
    Found in lib/Layout/Dimensions/BoxDimensions.php - About 1 hr to fix

      Method clearStyles has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function clearStyles()
          {
              $allNestedChildren = [];
              $maxLevel = '0';
              foreach ($this->getChildren() as $child) {
      Severity: Minor
      Found in lib/Layout/LineBox.php - About 1 hr to fix

        Method matchFont has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function matchFont(bool $custom = false)
            {
                if (!$custom) {
                    return static::$fontFiles[$this->family][$this->weight][$this->style];
                }
        Severity: Minor
        Found in lib/Objects/Font.php - About 1 hr to fix

          Function removeChild has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              public function removeChild(self $child)
              {
                  $oldChildren = $this->children; // copy children
                  $this->children = [];
                  foreach ($oldChildren as $currentChild) {
          Severity: Minor
          Found in lib/Layout/Box.php - About 1 hr 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 normalize has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function normalize($ruleValue, string $ruleName = ''): array
              {
                  if (null !== $this->normalized) {
                      return $this->normalized;
                  }
          Severity: Minor
          Found in lib/Style/Normalizer/Border.php - About 1 hr to fix

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

                protected function setUpSizingTypes()
                {
                    $columnSizingTypes = [];
                    // rowGroup -> row -> columns
                    $columns = $this->getFirstChild()->getFirstChild()->getChildren();
            Severity: Minor
            Found in lib/Layout/TableBox.php - About 1 hr to fix

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

                  public function render(): string
                  {
                      $xref = '';
                      $this->buffer = '';
              
              
              Severity: Minor
              Found in lib/Document.php - About 1 hr to fix

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

                    public function loadImage(string $fileName)
                    {
                        if ('data:image' === substr($fileName, 0, 10)) {
                            $this->imageData = $this->convertToJpg($fileName);
                        } elseif (filter_var($fileName, FILTER_VALIDATE_URL)) {
                Severity: Minor
                Found in lib/Objects/ImageStream.php - About 1 hr to fix

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

                      public function addPage(string $format = '', string $orientation = '', Page $page = null, Page $after = null): Page
                      {
                          if (null === $page) {
                              $page = (new Page())->setDocument($this)->init();
                          }
                  Severity: Minor
                  Found in lib/Document.php - About 1 hr to fix

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

                        public function measureOffset(bool $afterPageDividing = false)
                        {
                            if (\YetiForcePDF\Page::CUT_BELOW === $this->wasCut()) {
                                return $this;
                            }
                    Severity: Minor
                    Found in lib/Layout/BlockBox.php - About 1 hr to fix

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

                          public function getStyleWidth()
                          {
                              if (!$this->getBox()->isForMeasurement() && !$this->getBox()) {
                                  return '0';
                              }
                      Severity: Minor
                      Found in lib/Layout/Dimensions/BoxDimensions.php - About 1 hr 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 getColumns has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function getColumns()
                          {
                              $columns = [];
                              foreach ($this->getChildren() as $rowGroup) {
                                  foreach ($rowGroup->getChildren() as $row) {
                      Severity: Minor
                      Found in lib/Layout/TableBox.php - About 1 hr 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 loadImage has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function loadImage(string $fileName)
                          {
                              if ('data:image' === substr($fileName, 0, 10)) {
                                  $this->imageData = $this->convertToJpg($fileName);
                              } elseif (filter_var($fileName, FILTER_VALIDATE_URL)) {
                      Severity: Minor
                      Found in lib/Objects/ImageStream.php - About 1 hr 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 addChild has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function addChild(self $child, self $after = null): self
                          {
                              $afterIndex = \count($this->children);
                              if ($after) {
                                  foreach ($this->children as $afterIndex => $childObject) {
                      Severity: Minor
                      Found in lib/Objects/PdfObject.php - About 1 hr 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 renderResources has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function renderResources(): string
                          {
                              $rendered = [
                                  '  /Resources <<',
                              ];
                      Severity: Minor
                      Found in lib/Page.php - About 1 hr 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 mergeLineGroups has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function mergeLineGroups(array $lineGroups)
                          {
                              $lines = [];
                              foreach ($lineGroups as $lines) {
                                  if (!empty($lines)) {
                      Severity: Minor
                      Found in lib/Layout/BlockBox.php - About 1 hr 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 divideLines has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function divideLines()
                          {
                              $this->mergeLineGroups($this->groupLines());
                              foreach ($this->getChildren() as $child) {
                                  if ($child instanceof LineBox) {
                      Severity: Minor
                      Found in lib/Layout/BlockBox.php - About 1 hr 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 parseFont has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          protected function parseFont(array $rulesParsed)
                          {
                              $finalRules = [];
                              foreach ($rulesParsed as $ruleName => $ruleValue) {
                                  if ('font' === substr($ruleName, 0, 4)) {
                      Severity: Minor
                      Found in lib/Style/Style.php - About 1 hr to fix

                        Method clearMiddleInline has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function clearMiddleInline()
                            {
                                $box = $this->getBox();
                                $leftSpace = $this->getFullLeftSpace();
                                $dimensions = $box->getDimensions();
                        Severity: Minor
                        Found in lib/Style/Style.php - About 1 hr to fix
                          Severity
                          Category
                          Status
                          Source
                          Language