DerDu/SPHERE-Framework

View on GitHub
Application/People/Meta/Student/Service/Service/Support.php

Summary

Maintainability
F
1 wk
Test Coverage

File Support.php has 630 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
namespace SPHERE\Application\People\Meta\Student\Service\Service;

use SPHERE\Application\People\Meta\Student\Service\Data;
use SPHERE\Application\People\Meta\Student\Service\Entity\TblHandyCap;
Severity: Major
Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 day to fix

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

    abstract class Support extends Integration
    {
    
        /**
         * @param $Id
    Severity: Minor
    Found in Application/People/Meta/Student/Service/Service/Support.php - About 6 hrs to fix

      Function updateSpecial has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
      Open

          public function updateSpecial($PersonId, $SpecialId, $Data = array())
          {
      
              $tblSpecial = Student::useService()->getSpecialById($SpecialId);
              $tblPerson = Person::useService()->getPersonById($PersonId);
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.php - About 4 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 getSupportByPersonNewest has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
      Open

          public function getSupportByPersonNewest(TblPerson $tblPerson, $Type = array())
          {
      
              $tblSupportMatch = false;
              if(($tblSupportList = $this->getSupportByPerson($tblPerson))){
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.php - About 4 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 updateSupport has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
      Open

          public function updateSupport($PersonId, $SupportId, $Data = array())
          {
      
      
              $tblSupport = Student::useService()->getSupportById($SupportId);
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.php - About 4 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 createSpecial has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
      Open

          public function createSpecial($PersonId, $Data = array())
          {
      
              $tblPerson = Person::useService()->getPersonById($PersonId);
              $tblAccount = Account::useService()->getAccountBySession();
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.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 createSupport has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
      Open

          public function createSupport($PersonId, $Data = array())
          {
      
      
              $tblPerson = Person::useService()->getPersonById($PersonId);
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.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 getSupportForReportingByPerson has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          public function getSupportForReportingByPerson(TblPerson $tblPerson)
          {
              $tblSupport = false;
              if (($tblSupportType = Student::useService()->getSupportTypeByName('Förderbescheid'))
                  && ($tblSupportList = Student::useService()->getSupportAllByPersonAndSupportType($tblPerson, $tblSupportType))
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.php - About 2 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 updateSupport has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function updateSupport($PersonId, $SupportId, $Data = array())
          {
      
      
              $tblSupport = Student::useService()->getSupportById($SupportId);
      Severity: Minor
      Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

        Function updateHandyCap has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            public function updateHandyCap($PersonId, $HandyCapId, $Data = array())
            {
        
                $tblHandyCap = Student::useService()->getHandyCapById($HandyCapId);
                $tblPerson = Person::useService()->getPersonById($PersonId);
        Severity: Minor
        Found in Application/People/Meta/Student/Service/Service/Support.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 createHandyCap has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            public function createHandyCap($PersonId, $Data = array())
            {
        
                $tblPerson = Person::useService()->getPersonById($PersonId);
                $tblAccount = Account::useService()->getAccountBySession();
        Severity: Minor
        Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

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

            public function updateSpecial($PersonId, $SpecialId, $Data = array())
            {
        
                $tblSpecial = Student::useService()->getSpecialById($SpecialId);
                $tblPerson = Person::useService()->getPersonById($PersonId);
        Severity: Minor
        Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

          Method createSupport has 40 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function createSupport($PersonId, $Data = array())
              {
          
          
                  $tblPerson = Person::useService()->getPersonById($PersonId);
          Severity: Minor
          Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

            Method createSpecial has 34 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function createSpecial($PersonId, $Data = array())
                {
            
                    $tblPerson = Person::useService()->getPersonById($PersonId);
                    $tblAccount = Account::useService()->getAccountBySession();
            Severity: Minor
            Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

              Method updateHandyCap has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function updateHandyCap($PersonId, $HandyCapId, $Data = array())
                  {
              
                      $tblHandyCap = Student::useService()->getHandyCapById($HandyCapId);
                      $tblPerson = Person::useService()->getPersonById($PersonId);
              Severity: Minor
              Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

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

                    public function createHandyCap($PersonId, $Data = array())
                    {
                
                        $tblPerson = Person::useService()->getPersonById($PersonId);
                        $tblAccount = Account::useService()->getAccountBySession();
                Severity: Minor
                Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

                  Method getSupportForReportingByPerson has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function getSupportForReportingByPerson(TblPerson $tblPerson)
                      {
                          $tblSupport = false;
                          if (($tblSupportType = Student::useService()->getSupportTypeByName('Förderbescheid'))
                              && ($tblSupportList = Student::useService()->getSupportAllByPersonAndSupportType($tblPerson, $tblSupportType))
                  Severity: Minor
                  Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

                    Method importSupport has 8 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        public function importSupport(TblPerson $tblPerson,
                            TblSupportType $tblSupportType,
                            $Date = '',
                            $Company = '',
                            $PersonSupport = '',
                    Severity: Major
                    Found in Application/People/Meta/Student/Service/Service/Support.php - About 1 hr to fix

                      Consider simplifying this complex logical expression.
                      Open

                              if (isset($Data['PrimaryFocus'])
                                  && isset($Data['SupportType'])
                                  && ($tblSupportType = Student::useService()->getSupportTypeById($Data['SupportType']))
                                  && ($tblSupportType->getName() == 'Förderantrag' || $tblSupportType->getName() == 'Förderbescheid')
                                  && !($tblPrimaryFocusType = Student::useService()->getSupportFocusTypeById($Data['PrimaryFocus']))
                      Severity: Major
                      Found in Application/People/Meta/Student/Service/Service/Support.php - About 40 mins to fix

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

                            public function deleteSupport(TblSupport $tblSupport)
                            {
                        
                                $IsRemove = true;
                                if(($tblSupportFocusList = $this->getSupportFocusListBySupport($tblSupport))){
                        Severity: Minor
                        Found in Application/People/Meta/Student/Service/Service/Support.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 deleteSpecial has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function deleteSpecial(TblSpecial $tblSpecial)
                            {
                        
                                $IsRemove = true;
                                if(($tblSpecialDisorderList = $this->getSpecialDisorderAllBySpecial($tblSpecial))){
                        Severity: Minor
                        Found in Application/People/Meta/Student/Service/Service/Support.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 checkInputSupport has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function checkInputSupport($PersonId, $Data, $SupportId = null)
                            {
                                $Error = false;
                                $form = Student::useFrontend()->formSupport($PersonId, $SupportId);
                                if (isset($Data['Date']) && empty($Data['Date'])) {
                        Severity: Minor
                        Found in Application/People/Meta/Student/Service/Service/Support.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 getPrimaryFocusBySupport has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function getPrimaryFocusBySupport(TblSupport $tblSupport)
                            {
                        
                                $FocusList = false;
                                $tblSupportFocusList = (new Data($this->getBinding()))->getSupportFocusBySupport($tblSupport);
                        Severity: Minor
                        Found in Application/People/Meta/Student/Service/Service/Support.php - About 25 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function getIsSupportByPerson has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function getIsSupportByPerson(TblPerson $tblPerson)
                            {
                        
                                $return = false;
                                $tblSupport = Student::useService()->getSupportByPersonNewest($tblPerson, array('Förderbescheid'));
                        Severity: Minor
                        Found in Application/People/Meta/Student/Service/Service/Support.php - About 25 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Function getSpecialDisorderTypeAllBySpecial has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function getSpecialDisorderTypeAllBySpecial(TblSpecial $tblSpecial)
                            {
                        
                                $tblSpecialDisorderTypeList = array();
                                $tblSpecialDisorderList = (new Data($this->getBinding()))->getSpecialDisorderBySpecial($tblSpecial);
                        Severity: Minor
                        Found in Application/People/Meta/Student/Service/Service/Support.php - About 25 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

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

                            public function deleteSupport(TblSupport $tblSupport)
                            {
                        
                                $IsRemove = true;
                                if(($tblSupportFocusList = $this->getSupportFocusListBySupport($tblSupport))){
                        Severity: Major
                        Found in Application/People/Meta/Student/Service/Service/Support.php and 1 other location - About 1 hr to fix
                        Application/People/Meta/Student/Service/Service/Support.php on lines 974..990

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

                        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

                            public function deleteSpecial(TblSpecial $tblSpecial)
                            {
                        
                                $IsRemove = true;
                                if(($tblSpecialDisorderList = $this->getSpecialDisorderAllBySpecial($tblSpecial))){
                        Severity: Major
                        Found in Application/People/Meta/Student/Service/Service/Support.php and 1 other location - About 1 hr to fix
                        Application/People/Meta/Student/Service/Service/Support.php on lines 928..945

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

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

                                if($tblAccount){
                                    $tblPersonList = Account::useService()->getPersonAllByAccount($tblAccount);
                                    if($tblPersonList){
                                        $tblPersonEditor = $tblPersonList[0];
                                        if($tblPersonEditor){
                        Severity: Major
                        Found in Application/People/Meta/Student/Service/Service/Support.php and 3 other locations - About 30 mins to fix
                        Application/People/Meta/Student/Service/Service/Support.php on lines 212..223
                        Application/People/Meta/Student/Service/Service/Support.php on lines 410..421
                        Application/People/Meta/Student/Service/Service/Support.php on lines 468..479

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

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

                                if($tblAccount){
                                    $tblPersonList = Account::useService()->getPersonAllByAccount($tblAccount);
                                    if($tblPersonList){
                                        $tblPersonEditor = $tblPersonList[0];
                                        if($tblPersonEditor){
                        Severity: Major
                        Found in Application/People/Meta/Student/Service/Service/Support.php and 3 other locations - About 30 mins to fix
                        Application/People/Meta/Student/Service/Service/Support.php on lines 212..223
                        Application/People/Meta/Student/Service/Service/Support.php on lines 296..307
                        Application/People/Meta/Student/Service/Service/Support.php on lines 468..479

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

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

                                if($tblAccount){
                                    $tblPersonList = Account::useService()->getPersonAllByAccount($tblAccount);
                                    if($tblPersonList){
                                        $tblPersonEditor = $tblPersonList[0];
                                        if($tblPersonEditor){
                        Severity: Major
                        Found in Application/People/Meta/Student/Service/Service/Support.php and 3 other locations - About 30 mins to fix
                        Application/People/Meta/Student/Service/Service/Support.php on lines 296..307
                        Application/People/Meta/Student/Service/Service/Support.php on lines 410..421
                        Application/People/Meta/Student/Service/Service/Support.php on lines 468..479

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

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

                                if($tblAccount){
                                    $tblPersonList = Account::useService()->getPersonAllByAccount($tblAccount);
                                    if($tblPersonList){
                                        $tblPersonEditor = $tblPersonList[0];
                                        if($tblPersonEditor){
                        Severity: Major
                        Found in Application/People/Meta/Student/Service/Service/Support.php and 3 other locations - About 30 mins to fix
                        Application/People/Meta/Student/Service/Service/Support.php on lines 212..223
                        Application/People/Meta/Student/Service/Service/Support.php on lines 296..307
                        Application/People/Meta/Student/Service/Service/Support.php on lines 410..421

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

                        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