DerDu/SPHERE-Framework

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

Summary

Maintainability
F
1 wk
Test Coverage

File EzshKurshalbjahreszeugnis.php has 659 lines of code (exceeds 250 allowed). Consider refactoring.
Open

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

    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

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

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

      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 getBasicCourses has 108 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 87 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 52 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

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

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

                private function setPointsOverview($MarginTop = '5px')
                {
            
                    $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 setCourseSubject has 8 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

                    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/GymAbitur.php on lines 1387..1428
                    Application/Api/Education/Certificate/Generator/Repository/GymKurshalbjahreszeugnis.php on lines 182..223

                    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/GymKurshalbjahreszeugnis.php on lines 277..314

                    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/GymKurshalbjahreszeugnis.php on lines 364..380

                    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/GymKurshalbjahreszeugnis.php on lines 567..616

                    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

                    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/GymKurshalbjahreszeugnis.php on lines 232..238
                    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[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 366..372
                    Application/Api/Education/Certificate/Generator/Repository/GymKurshalbjahreszeugnis.php on lines 232..238
                    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

                    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/GymKurshalbjahreszeugnis.php on lines 334..340

                    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