DerDu/SPHERE-Framework

View on GitHub
Application/Education/Lesson/Division/Filter/Filter.php

Summary

Maintainability
F
2 wks
Test Coverage

File Filter.php has 813 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Created by PhpStorm.
 * User: Kauschke
 * Date: 08.06.2018
Severity: Major
Found in Application/Education/Lesson/Division/Filter/Filter.php - About 1 day to fix

    Function getIsFulfilledButNotInGroupByPerson has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getIsFulfilledButNotInGroupByPerson(
            TblPerson $tblPerson,
            TblSubject $tblSubject,
            TblSubjectGroup $tblSubjectGroup,
            TblDivisionSubject $tblDivisionSubject,
    Severity: Minor
    Found in Application/Education/Lesson/Division/Filter/Filter.php - About 1 day 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 getMessageForSubjectGroup has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getMessageForSubjectGroup()
        {
            $list = array();
            if ($this->isFilterSet()
                && ($tblDivisionSubject = $this->getTblDivisionSubject())
    Severity: Minor
    Found in Application/Education/Lesson/Division/Filter/Filter.php - About 1 day 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

    Filter has 48 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Filter extends Extension
    {
    
        const DESCRIPTION_GROUP = 'Personengruppe';
        const DESCRIPTION_GENDER = 'Personendaten: Geschlecht';
    Severity: Minor
    Found in Application/Education/Lesson/Division/Filter/Filter.php - About 6 hrs to fix

      Method getIsFulfilledButNotInGroupByPerson has 115 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getIsFulfilledButNotInGroupByPerson(
              TblPerson $tblPerson,
              TblSubject $tblSubject,
              TblSubjectGroup $tblSubjectGroup,
              TblDivisionSubject $tblDivisionSubject,
      Severity: Major
      Found in Application/Education/Lesson/Division/Filter/Filter.php - About 4 hrs to fix

        Function getTblSubjectForeignLanguagesByPerson has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
        Open

            private function getTblSubjectForeignLanguagesByPerson(TblPerson $tblPerson)
            {
                $result = array();
                if (($tblStudent = $tblPerson->getStudent())
                    && ($tblStudentSubjectType = Student::useService()->getStudentSubjectTypeByIdentifier('FOREIGN_LANGUAGE'))
        Severity: Minor
        Found in Application/Education/Lesson/Division/Filter/Filter.php - About 3 hrs 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 load has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
        Open

            public function load()
            {
                $Filter = array();
                if (($tblSubjectGroup = $this->getTblSubjectGroup())) {
                    // gespeicherten Filter laden
        Severity: Minor
        Found in Application/Education/Lesson/Division/Filter/Filter.php - About 3 hrs 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 getIsNotFulfilledByPerson has 77 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getIsNotFulfilledByPerson(
                TblPerson $tblPerson,
                TblSubject $tblSubject,
                TblSubjectGroup $tblSubjectGroup,
                TblDivisionSubject $tblDivisionSubject,
        Severity: Major
        Found in Application/Education/Lesson/Division/Filter/Filter.php - About 3 hrs to fix

          Method getMessageForSubjectGroup has 55 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function getMessageForSubjectGroup()
              {
                  $list = array();
                  if ($this->isFilterSet()
                      && ($tblDivisionSubject = $this->getTblDivisionSubject())
          Severity: Major
          Found in Application/Education/Lesson/Division/Filter/Filter.php - About 2 hrs to fix

            Method setFilter has 53 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function setFilter($Filter)
                {
            
                    $header = array();
            
            
            Severity: Major
            Found in Application/Education/Lesson/Division/Filter/Filter.php - About 2 hrs to fix

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

                  public function load()
                  {
                      $Filter = array();
                      if (($tblSubjectGroup = $this->getTblSubjectGroup())) {
                          // gespeicherten Filter laden
              Severity: Minor
              Found in Application/Education/Lesson/Division/Filter/Filter.php - About 1 hr to fix

                Method getTblSubjectForeignLanguagesByPerson has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    private function getTblSubjectForeignLanguagesByPerson(TblPerson $tblPerson)
                    {
                        $result = array();
                        if (($tblStudent = $tblPerson->getStudent())
                            && ($tblStudentSubjectType = Student::useService()->getStudentSubjectTypeByIdentifier('FOREIGN_LANGUAGE'))
                Severity: Minor
                Found in Application/Education/Lesson/Division/Filter/Filter.php - About 1 hr to fix

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

                      public function setFilter($Filter)
                      {
                  
                          $header = array();
                  
                  
                  Severity: Minor
                  Found in Application/Education/Lesson/Division/Filter/Filter.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 getIsNotFulfilledByPerson has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function getIsNotFulfilledByPerson(
                          TblPerson $tblPerson,
                          TblSubject $tblSubject,
                          TblSubjectGroup $tblSubjectGroup,
                          TblDivisionSubject $tblDivisionSubject,
                  Severity: Minor
                  Found in Application/Education/Lesson/Division/Filter/Filter.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 isFilterFulfilledByPerson has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function isFilterFulfilledByPerson(TblPerson $tblPerson)
                      {
                          if ($this->getTblGroup() && !$this->hasGroup($tblPerson)) {
                              return false;
                          }
                  Severity: Minor
                  Found in Application/Education/Lesson/Division/Filter/Filter.php - About 55 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

                  Method getIsNotFulfilledByPerson has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          TblPerson $tblPerson,
                          TblSubject $tblSubject,
                          TblSubjectGroup $tblSubjectGroup,
                          TblDivisionSubject $tblDivisionSubject,
                          $list,
                  Severity: Minor
                  Found in Application/Education/Lesson/Division/Filter/Filter.php - About 45 mins to fix

                    Method getIsFulfilledButNotInGroupByPerson has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                            TblPerson $tblPerson,
                            TblSubject $tblSubject,
                            TblSubjectGroup $tblSubjectGroup,
                            TblDivisionSubject $tblDivisionSubject,
                            $list,
                    Severity: Minor
                    Found in Application/Education/Lesson/Division/Filter/Filter.php - About 45 mins to fix

                      Function getPersonAllWhereFilterIsNotFulfilled has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function getPersonAllWhereFilterIsNotFulfilled($list)
                          {
                      
                              if (($tblDivisionSubject = $this->getTblDivisionSubject())
                                  && ($tblSubjectGroup = $this->getTblSubjectGroup())
                      Severity: Minor
                      Found in Application/Education/Lesson/Division/Filter/Filter.php - About 45 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

                      Avoid deeply nested control flow statements.
                      Open

                                                  if ($tblSubjectStudentList) {
                                                      foreach ($tblSubjectStudentList as $tblSubjectStudent) {
                                                          if (($tblPersonItem = $tblSubjectStudent->getServiceTblPerson())) {
                                                              $personInAnotherGroupList[$tblPersonItem->getId()] = $tblPersonItem;
                                                          }
                      Severity: Major
                      Found in Application/Education/Lesson/Division/Filter/Filter.php - About 45 mins to fix

                        Function getTblSubjectElectivesByPerson has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            private function getTblSubjectElectivesByPerson(TblPerson $tblPerson)
                            {
                                $result = array();
                                if (($tblStudent = $tblPerson->getStudent())
                                    && ($tblStudentSubjectType = Student::useService()->getStudentSubjectTypeByIdentifier('ELECTIVE'))
                        Severity: Minor
                        Found in Application/Education/Lesson/Division/Filter/Filter.php - About 35 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

                        Function saveFilter has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            private function saveFilter(TblSubjectGroup $tblSubjectGroup, $property, $field)
                            {
                                $tblSubjectGroupFilter = Division::useService()->getSubjectGroupFilterBy($tblSubjectGroup, $field);
                                /** @var Element $property */
                                if ($property) {
                        Severity: Minor
                        Found in Application/Education/Lesson/Division/Filter/Filter.php - About 35 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

                        Avoid too many return statements within this method.
                        Open

                                return true;
                        Severity: Major
                        Found in Application/Education/Lesson/Division/Filter/Filter.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                      return false;
                          Severity: Major
                          Found in Application/Education/Lesson/Division/Filter/Filter.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                        return false;
                            Severity: Major
                            Found in Application/Education/Lesson/Division/Filter/Filter.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                          return false;
                              Severity: Major
                              Found in Application/Education/Lesson/Division/Filter/Filter.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                            return false;
                                Severity: Major
                                Found in Application/Education/Lesson/Division/Filter/Filter.php - About 30 mins to fix

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

                                          if (($tblGender = $this->getTblGender()) && !$this->hasGender($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['Gender']['Field'] = Filter::DESCRIPTION_GENDER;
                                              $list[$tblPerson->getId()]['Filters']['Gender']['Value'] = $this->getTblGenderStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['Gender']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblCourse = $this->getTblCourse()) && !$this->hasCourse($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['Course']['Field'] = Filter::DESCRIPTION_COURSE;
                                              $list[$tblPerson->getId()]['Filters']['Course']['Value'] = $this->getTblCourseStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['Course']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblSubjectReligion = $this->getTblSubjectReligion()) && !$this->hasSubjectReligion($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectReligion']['Field'] = Filter::DESCRIPTION_SUBJECT_RELIGION;
                                              $list[$tblPerson->getId()]['Filters']['SubjectReligion']['Value'] = $this->getTblSubjectReligionStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectReligion']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblSubjectElective = $this->getTblSubjectElective()) && !$this->hasSubjectElective($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectElective']['Field'] = Filter::DESCRIPTION_SUBJECT_ELECTIVE;
                                              $list[$tblPerson->getId()]['Filters']['SubjectElective']['Value'] = $this->getTblSubjectElectivesStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectElective']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084

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

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

                                          if (($tblSubjectProfile = $this->getTblSubjectProfile()) && !$this->hasSubjectProfile($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectProfile']['Field'] = Filter::DESCRIPTION_SUBJECT_PROFILE;
                                              $list[$tblPerson->getId()]['Filters']['SubjectProfile']['Value'] = $this->getTblSubjectProfileStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectProfile']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblSubjectForeignLanguage = $this->getTblSubjectForeignLanguage()) && !$this->hasSubjectForeignLanguage($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectForeignLanguage']['Field'] = Filter::DESCRIPTION_SUBJECT_FOREIGN_LANGUAGE;
                                              $list[$tblPerson->getId()]['Filters']['SubjectForeignLanguage']['Value'] = $this->getTblSubjectForeignLanguagesStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectForeignLanguage']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblSubjectOrientation = $this->getTblSubjectOrientation()) && !$this->hasSubjectOrientation($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectOrientation']['Field'] = Filter::DESCRIPTION_SUBJECT_ORIENTATION;
                                              $list[$tblPerson->getId()]['Filters']['SubjectOrientation']['Value'] = $this->getTblSubjectOrientationStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectOrientation']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1009..1018
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblGroup = $this->getTblGroup()) && !$this->hasGroup($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['Group']['Field'] = Filter::DESCRIPTION_GROUP;
                                              $list[$tblPerson->getId()]['Filters']['Group']['Value'] = $this->getTblGroupsStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['Group']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1020..1029
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1031..1040
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1042..1051
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1053..1062
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1064..1073
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1075..1084
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1086..1095

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

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

                                          if (($tblCourse = $this->getTblCourse()) && $this->hasCourse($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['Course']['Field'] = Filter::DESCRIPTION_COURSE;
                                              $list[$tblPerson->getId()]['Filters']['Course']['Value'] = $this->getTblCourseStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['Course']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

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

                                          if (($tblGender = $this->getTblGender()) && $this->hasGender($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['Gender']['Field'] = Filter::DESCRIPTION_GENDER;
                                              $list[$tblPerson->getId()]['Filters']['Gender']['Value'] = $this->getTblGenderStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['Gender']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

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

                                          if (($tblSubjectProfile = $this->getTblSubjectProfile()) && $this->hasSubjectProfile($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectProfile']['Field'] = Filter::DESCRIPTION_SUBJECT_PROFILE;
                                              $list[$tblPerson->getId()]['Filters']['SubjectProfile']['Value'] = $this->getTblSubjectProfileStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectProfile']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

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

                                          if (($tblSubjectElective = $this->getTblSubjectElective()) && $this->hasSubjectElective($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectElective']['Field'] = Filter::DESCRIPTION_SUBJECT_ELECTIVE;
                                              $list[$tblPerson->getId()]['Filters']['SubjectElective']['Value'] = $this->getTblSubjectElectivesStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectElective']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242

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

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

                                          if (($tblSubjectOrientation = $this->getTblSubjectOrientation()) && $this->hasSubjectOrientation($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectOrientation']['Field'] = Filter::DESCRIPTION_SUBJECT_ORIENTATION;
                                              $list[$tblPerson->getId()]['Filters']['SubjectOrientation']['Value'] = $this->getTblSubjectOrientationStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectOrientation']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

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

                                          if (($tblSubjectForeignLanguage = $this->getTblSubjectForeignLanguage()) && $this->hasSubjectForeignLanguage($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectForeignLanguage']['Field'] = Filter::DESCRIPTION_SUBJECT_FOREIGN_LANGUAGE;
                                              $list[$tblPerson->getId()]['Filters']['SubjectForeignLanguage']['Value'] = $this->getTblSubjectForeignLanguagesStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectForeignLanguage']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

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

                                          if (($tblSubjectReligion = $this->getTblSubjectReligion()) && $this->hasSubjectReligion($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['SubjectReligion']['Field'] = Filter::DESCRIPTION_SUBJECT_RELIGION;
                                              $list[$tblPerson->getId()]['Filters']['SubjectReligion']['Value'] = $this->getTblSubjectReligionStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['SubjectReligion']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1167..1176
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

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

                                          if (($tblGroup = $this->getTblGroup()) && $this->hasGroup($tblPerson)) {
                                              $list[$tblPerson->getId()]['Filters']['Group']['Field'] = Filter::DESCRIPTION_GROUP;
                                              $list[$tblPerson->getId()]['Filters']['Group']['Value'] = $this->getTblGroupsStringByPerson($tblPerson);
                                  
                                              $list[$tblPerson->getId()]['Filters']['Group']['DivisionSubjects'][$tblDivisionSubject->getId()]
                                  Severity: Major
                                  Found in Application/Education/Lesson/Division/Filter/Filter.php and 7 other locations - About 3 hrs to fix
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1178..1187
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1189..1198
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1200..1209
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1211..1220
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1222..1231
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1233..1242
                                  Application/Education/Lesson/Division/Filter/Filter.php on lines 1244..1253

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

                                  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