DerDu/SPHERE-Framework

View on GitHub
Application/Api/Education/Certificate/Generator/Repository/MsAbsRs.php

Summary

Maintainability
F
1 wk
Test Coverage

File MsAbsRs.php has 625 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
namespace SPHERE\Application\Api\Education\Certificate\Generator\Repository;

use SPHERE\Application\Api\Education\Certificate\Generator\Certificate;
use SPHERE\Application\Education\Certificate\Generate\Generate;

    Method buildPages has 157 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function buildPages(TblPerson $tblPerson = null)
        {
    
            $personId = $tblPerson ? $tblPerson->getId() : 0;
    
    

      Method getExaminationsBoard has 134 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getExaminationsBoard($marginTop, $textSize)
          {
      
              $leaderName = '&nbsp;';
              $leaderDescription = 'Vorsitzende(r)';

        Method getSchoolPart has 132 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function getSchoolPart($personId)
            {
        
                $sliceList = array();
        
        

          Method getAdditionalSubjectLanes has 75 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function getAdditionalSubjectLanes(
                  $personId,
                  $TextSize = '14px',
                  $IsGradeUnderlined = false
              ) {

            Method getHeadForDiploma has 66 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function getHeadForDiploma($IsSample, $showPicture)
                {
            
                    if ($showPicture) {
                        $pictureAddress = '';

              Function getAdditionalSubjectLanes has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
              Open

                  private function getAdditionalSubjectLanes(
                      $personId,
                      $TextSize = '14px',
                      $IsGradeUnderlined = false
                  ) {

              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 getExaminationsBoard has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getExaminationsBoard($marginTop, $textSize)
                  {
              
                      $leaderName = '&nbsp;';
                      $leaderDescription = 'Vorsitzende(r)';

              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 getHeadForDiploma has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
              Open

                  public static function getHeadForDiploma($IsSample, $showPicture)
                  {
              
                      if ($showPicture) {
                          $pictureAddress = '';

              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 getSchoolPart has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
              Open

                  public static function getSchoolPart($personId)
                  {
              
                      $sliceList = array();
              
              

              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 getPictureForDiploma has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public static function getPictureForDiploma($showPicture, $marginTop = '40px')
                  {
              
                      if (!$showPicture) {
                          return new Slice();
              Severity: Minor
              Found in Application/Api/Education/Certificate/Generator/Repository/MsAbsRs.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

              Identical blocks of code found in 2 locations. Consider refactoring.
              Open

                      if ($this->getTblPrepareCertificate()
                          && ($tblGenerateCertificate = $this->getTblPrepareCertificate()->getServiceTblGenerateCertificate())
                      ) {
              
                          if (($tblGenerateCertificateSettingLeader = Generate::useService()->getGenerateCertificateSettingBy($tblGenerateCertificate, 'Leader'))
              Application/Api/Education/Certificate/Generator/Repository/GymAbitur.php on lines 1774..1805

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

              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 4 locations. Consider refactoring.
              Open

                      $pageList[] = (new Page())
                          ->addSlice((new Slice())
                              ->addSection((new Section())
                                  ->addElementColumn((new Element())
                                      ->setContent('Vorname und Name:')
              Application/Api/Education/Certificate/Generator/Repository/MsAbg.php on lines 210..245
              Application/Api/Education/Certificate/Generator/Repository/MsAbgLernen.php on lines 133..177
              Application/Api/Education/Certificate/Generator/Repository/MsAbgLernenHs.php on lines 152..204

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

              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

              Identical blocks of code found in 2 locations. Consider refactoring.
              Open

                      if ($IsSample) {
                          $Header = (new Slice())
                              ->addSection((new Section())
                                  ->addElementColumn((new Element())
                                      , '25%'
              Application/Api/Education/Certificate/Generator/Certificate.php on lines 438..459

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

              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 3 locations. Consider refactoring.
              Open

                      $pageList[] = (new Page())
                          ->addSlice((new Slice())
                              ->addSection((new Section())
                                  ->addElementColumn((new Element())
                                      ->setContent('Vorname und Name:')
              Application/Api/Education/Certificate/Generator/Repository/MsAbsHs.php on lines 59..137
              Application/Api/Education/Certificate/Generator/Repository/MsAbsHsQ.php on lines 61..136

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

              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 6 locations. Consider refactoring.
              Open

                      $pageList[] = (new Page())
                          ->addSlice(
                              $Header
                          )
                          ->addSlice((new Slice())
              Application/Api/Education/Certificate/Generator/Repository/MsAbg.php on lines 42..58
              Application/Api/Education/Certificate/Generator/Repository/MsAbgLernen.php on lines 42..58
              Application/Api/Education/Certificate/Generator/Repository/MsAbgLernenHs.php on lines 42..58
              Application/Api/Education/Certificate/Generator/Repository/MsAbsHs.php on lines 41..57
              Application/Api/Education/Certificate/Generator/Repository/MsAbsHsQ.php on lines 41..59

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

              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