DerDu/SPHERE-Framework

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

Summary

Maintainability
F
1 wk
Test Coverage

Function getBasicCourses has a Cognitive Complexity of 63 (exceeds 5 allowed). Consider refactoring.
Open

    private function getBasicCourses(TblPerson $tblPerson = null, $IsGradeUnderlined = true)
    {

        $slice = new Slice();
        $personId = $tblPerson ? $tblPerson->getId() : 0;

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

File GymKurshalbjahreszeugnis.php has 534 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Created by PhpStorm.
 * User: Kauschke
 * Date: 25.10.2017

    Function setCourses has a Cognitive Complexity of 43 (exceeds 5 allowed). Consider refactoring.
    Open

        private function setCourses(TblPerson $tblPerson = null)
        {
    
            $advancedCourses = array();
            $basicCourses = 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

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

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

      Method getBasicCourses has 107 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function getBasicCourses(TblPerson $tblPerson = null, $IsGradeUnderlined = true)
          {
      
              $slice = new Slice();
              $personId = $tblPerson ? $tblPerson->getId() : 0;

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

            protected function getOwnSignPart($personId, $MarginTop = '25px')
            {
                $SignSlice = (new Slice());
        
                $SignSlice->addSection((new Section())

          Method setCourseSubject has 51 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function setCourseSubject(
                  TblSubject $tblSubject = null,
                  Section $section,
                  $isSubjectUnderlined,
                  $isGradeUnderlined,

            Method setPointsOverview has 41 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                private function setPointsOverview($MarginTop = '20px')
                {
            
                    $textSize = '10px';
                    $slice = new Slice();

              Method setCourses has 36 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private function setCourses(TblPerson $tblPerson = null)
                  {
              
                      $advancedCourses = array();
                      $basicCourses = array();

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

                    private function getAdvancedCourses(TblPerson $tblPerson = null, $IsGradeUnderlined = true)
                    {
                
                        $slice = new Slice();
                        $personId = $tblPerson ? $tblPerson->getId() : 0;

                  Method setCourseSubject has 9 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          TblSubject $tblSubject = null,
                          Section $section,
                          $isSubjectUnderlined,
                          $isGradeUnderlined,
                          $personId,

                    Method setColumnElement has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                            Section $section,
                            $name,
                            $textSize,
                            $isBorderBottom = false,
                            $isBorderRight = false

                      Similar blocks of code found in 3 locations. Consider refactoring.
                      Open

                          private function setPointsOverview($MarginTop = '20px')
                          {
                      
                              $textSize = '10px';
                              $slice = new Slice();
                      Application/Api/Education/Certificate/Generator/Repository/GymAbgSekII.php on lines 872..920
                      Application/Api/Education/Certificate/Generator/Repository/GymAbitur.php on lines 1462..1510

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

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

                          private function setCourses(TblPerson $tblPerson = null)
                          {
                      
                              $advancedCourses = array();
                              $basicCourses = array();
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 303..344
                      Application/Api/Education/Certificate/Generator/Repository/GymAbitur.php on lines 1387..1428

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

                      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 (($tblCertificateSubjectAll = Generator::useService()->getCertificateSubjectAll($this->getCertificateEntity()))) {
                                  $SubjectStructure = array();
                                  foreach ($tblCertificateSubjectAll as $tblCertificateSubject) {
                                      $tblSubject = $tblCertificateSubject->getServiceTblSubject();
                                      if ($tblSubject) {
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 393..430

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

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

                                          if ($isSecondLane) {
                                              $slice->addSection($section);
                                              if ($subSection) {
                                                  $slice->addSection($subSection);
                                                  $subSection = false;
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 481..497

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

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

                              $SignSlice->addSection((new Section())
                                  ->addElementColumn((new Element())
                                      ->setContent('&nbsp;')
                                      ->styleAlignCenter()
                                      ->styleBorderBottom('1px', '#000')
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 685..737

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

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

                          private function setColumnElement(
                              Section $section,
                              $name,
                              $textSize,
                              $isBorderBottom = false,
                      Application/Api/Education/Certificate/Generator/Repository/GymAbgSekII.php on lines 929..947
                      Application/Api/Education/Certificate/Generator/Repository/GymAbitur.php on lines 1437..1455

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

                              if ($this->AdvancedCourses && isset($this->AdvancedCourses[0])
                                  && ($tblSubject = Subject::useService()->getSubjectByAcronym($this->AdvancedCourses[0]))
                              ) {
                                  $this->setCourseSubject($tblSubject, $section, true, $IsGradeUnderlined, $personId);
                              } else {
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 353..359
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 366..372
                      Application/Api/Education/Certificate/Generator/Repository/GymKurshalbjahreszeugnis.php on lines 247..253

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

                      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

                              if ($this->AdvancedCourses && isset($this->AdvancedCourses[1])
                                  && ($tblSubject = Subject::useService()->getSubjectByAcronym($this->AdvancedCourses[1]))
                              ) {
                                  $this->setCourseSubject($tblSubject, $section, true, $IsGradeUnderlined, $personId);
                              } else {
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 353..359
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 366..372
                      Application/Api/Education/Certificate/Generator/Repository/GymKurshalbjahreszeugnis.php on lines 232..238

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

                      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 (isset($this->AdvancedCourses[0]) && $this->AdvancedCourses[0] == $tblSubject->getAcronym()) {
                                              $isAdvancedCourse = true;
                                          } elseif (isset($this->AdvancedCourses[1]) && $this->AdvancedCourses[1] == $tblSubject->getAcronym()) {
                                              $isAdvancedCourse = true;
                                          } else {
                      Application/Api/Education/Certificate/Generator/Repository/EZSH/EzshKurshalbjahreszeugnis.php on lines 450..456

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

                      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