fisharebest/webtrees

View on GitHub
app/Services/IndividualFactsService.php

Summary

Maintainability
F
2 wks
Test Coverage

Method childFacts has 387 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function childFacts(Individual $person, Family $family, string $option, string $relation, Date $min_date, Date $max_date): Collection
    {
        $SHOW_RELATIVES_EVENTS = $person->tree()->getPreference('SHOW_RELATIVES_EVENTS');

        $birth_of_a_child = [
Severity: Major
Found in app/Services/IndividualFactsService.php - About 1 day to fix

    Function childFacts has a Cognitive Complexity of 86 (exceeds 5 allowed). Consider refactoring.
    Open

        private function childFacts(Individual $person, Family $family, string $option, string $relation, Date $min_date, Date $max_date): Collection
        {
            $SHOW_RELATIVES_EVENTS = $person->tree()->getPreference('SHOW_RELATIVES_EVENTS');
    
            $birth_of_a_child = [
    Severity: Minor
    Found in app/Services/IndividualFactsService.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 parentFacts has a Cognitive Complexity of 77 (exceeds 5 allowed). Consider refactoring.
    Open

        private function parentFacts(Individual $person, int $sosa, Date $min_date, Date $max_date): Collection
        {
            $SHOW_RELATIVES_EVENTS = $person->tree()->getPreference('SHOW_RELATIVES_EVENTS');
    
            $death_of_a_parent = [
    Severity: Minor
    Found in app/Services/IndividualFactsService.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

    File IndividualFactsService.php has 670 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * webtrees: online genealogy
     * Copyright (C) 2023 webtrees development team
    Severity: Major
    Found in app/Services/IndividualFactsService.php - About 1 day to fix

      Method parentFacts has 139 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function parentFacts(Individual $person, int $sosa, Date $min_date, Date $max_date): Collection
          {
              $SHOW_RELATIVES_EVENTS = $person->tree()->getPreference('SHOW_RELATIVES_EVENTS');
      
              $death_of_a_parent = [
      Severity: Major
      Found in app/Services/IndividualFactsService.php - About 5 hrs to fix

        Function associateFacts has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
        Open

            public function associateFacts(Individual $individual): Collection
            {
                $facts = [];
        
                $asso1 = $this->linked_record_service->linkedIndividuals($individual, 'ASSO');
        Severity: Minor
        Found in app/Services/IndividualFactsService.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 spouseFacts has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            private function spouseFacts(Individual $individual, Individual $spouse, Date $min_date, Date $max_date): Collection
            {
                $SHOW_RELATIVES_EVENTS = $individual->tree()->getPreference('SHOW_RELATIVES_EVENTS');
        
                $death_of_a_spouse = [
        Severity: Minor
        Found in app/Services/IndividualFactsService.php - About 1 hr to fix

          Method associateFacts has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function associateFacts(Individual $individual): Collection
              {
                  $facts = [];
          
                  $asso1 = $this->linked_record_service->linkedIndividuals($individual, 'ASSO');
          Severity: Minor
          Found in app/Services/IndividualFactsService.php - About 1 hr to fix

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

                private function childFacts(Individual $person, Family $family, string $option, string $relation, Date $min_date, Date $max_date): Collection
            Severity: Minor
            Found in app/Services/IndividualFactsService.php - About 45 mins to fix

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

                  private function spouseFacts(Individual $individual, Individual $spouse, Date $min_date, Date $max_date): Collection
                  {
                      $SHOW_RELATIVES_EVENTS = $individual->tree()->getPreference('SHOW_RELATIVES_EVENTS');
              
                      $death_of_a_spouse = [
              Severity: Minor
              Found in app/Services/IndividualFactsService.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

                                  if ($this->includeFact($fact, $min_date, $max_date)) {
                                      switch ($option) {
                                          case '_GCHI':
                                              switch ($relation) {
                                                  case 'dau':
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 1 other location - About 1 day to fix
              app/Services/IndividualFactsService.php on lines 510..535

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

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

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

                                  if ($option === '_CHIL' || $this->includeFact($fact, $min_date, $max_date)) {
                                      switch ($option) {
                                          case '_GCHI':
                                              switch ($relation) {
                                                  case 'dau':
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 1 other location - About 1 day to fix
              app/Services/IndividualFactsService.php on lines 541..566

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

              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

                      $birth_of_a_grandchild2 = [
                          'INDI:BIRT' => [
                              'M' => I18N::translateContext('son’s son', 'Birth of a grandson'),
                              'F' => I18N::translateContext('son’s daughter', 'Birth of a granddaughter'),
                              'U' => I18N::translate('Birth of a grandchild'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 1 other location - About 5 hrs to fix
              app/Services/IndividualFactsService.php on lines 282..303

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

              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

                      $birth_of_a_grandchild1 = [
                          'INDI:BIRT' => [
                              'M' => I18N::translateContext('daughter’s son', 'Birth of a grandson'),
                              'F' => I18N::translateContext('daughter’s daughter', 'Birth of a granddaughter'),
                              'U' => I18N::translate('Birth of a grandchild'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 1 other location - About 5 hrs to fix
              app/Services/IndividualFactsService.php on lines 305..326

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

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

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

                      $birth_of_a_sibling = [
                          'INDI:BIRT' => [
                              'M' => I18N::translate('Birth of a brother'),
                              'F' => I18N::translate('Birth of a sister'),
                              'U' => I18N::translate('Birth of a sibling'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 3 other locations - About 4 hrs to fix
              app/Services/IndividualFactsService.php on lines 190..211
              app/Services/IndividualFactsService.php on lines 236..257
              app/Services/IndividualFactsService.php on lines 259..280

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

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

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

                      $birth_of_a_child = [
                          'INDI:BIRT' => [
                              'M' => I18N::translate('Birth of a son'),
                              'F' => I18N::translate('Birth of a daughter'),
                              'U' => I18N::translate('Birth of a child'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 3 other locations - About 4 hrs to fix
              app/Services/IndividualFactsService.php on lines 213..234
              app/Services/IndividualFactsService.php on lines 236..257
              app/Services/IndividualFactsService.php on lines 259..280

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

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

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

                      $birth_of_a_grandchild = [
                          'INDI:BIRT' => [
                              'M' => I18N::translate('Birth of a grandson'),
                              'F' => I18N::translate('Birth of a granddaughter'),
                              'U' => I18N::translate('Birth of a grandchild'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 3 other locations - About 4 hrs to fix
              app/Services/IndividualFactsService.php on lines 190..211
              app/Services/IndividualFactsService.php on lines 213..234
              app/Services/IndividualFactsService.php on lines 236..257

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

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

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

                      $birth_of_a_half_sibling = [
                          'INDI:BIRT' => [
                              'M' => I18N::translate('Birth of a half-brother'),
                              'F' => I18N::translate('Birth of a half-sister'),
                              'U' => I18N::translate('Birth of a half-sibling'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 3 other locations - About 4 hrs to fix
              app/Services/IndividualFactsService.php on lines 190..211
              app/Services/IndividualFactsService.php on lines 213..234
              app/Services/IndividualFactsService.php on lines 259..280

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

              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

                      $death_of_a_grandchild2 = [
                          'INDI:DEAT' => [
                              'M' => I18N::translateContext('son’s son', 'Death of a grandson'),
                              'F' => I18N::translateContext('son’s daughter', 'Death of a granddaughter'),
                              'U' => I18N::translate('Death of a grandchild'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 1 other location - About 3 hrs to fix
              app/Services/IndividualFactsService.php on lines 400..416

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

              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

                      $death_of_a_grandchild1 = [
                          'INDI:DEAT' => [
                              'M' => I18N::translateContext('daughter’s son', 'Death of a grandson'),
                              'F' => I18N::translateContext('daughter’s daughter', 'Death of a granddaughter'),
                              'U' => I18N::translate('Death of a grandchild'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 1 other location - About 3 hrs to fix
              app/Services/IndividualFactsService.php on lines 418..434

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

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

                      $death_of_a_parent = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a father'),
                              'F' => I18N::translate('Death of a mother'),
                              'U' => I18N::translate('Death of a parent'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_half_sibling = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a half-brother'),
                              'F' => I18N::translate('Death of a half-sister'),
                              'U' => I18N::translate('Death of a half-sibling'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_maternal_grandparent = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a maternal grandfather'),
                              'F' => I18N::translate('Death of a maternal grandmother'),
                              'U' => I18N::translate('Death of a grandparent'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_paternal_grandparent = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a paternal grandfather'),
                              'F' => I18N::translate('Death of a paternal grandmother'),
                              'U' => I18N::translate('Death of a grandparent'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_spouse = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a husband'),
                              'F' => I18N::translate('Death of a wife'),
                              'U' => I18N::translate('Death of a spouse'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692

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

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

                      $death_of_a_sibling = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a brother'),
                              'F' => I18N::translate('Death of a sister'),
                              'U' => I18N::translate('Death of a sibling'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_child = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a son'),
                              'F' => I18N::translate('Death of a daughter'),
                              'U' => I18N::translate('Death of a child'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_grandchild = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a grandson'),
                              'F' => I18N::translate('Death of a granddaughter'),
                              'U' => I18N::translate('Death of a grandchild'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 640..656
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

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

                      $death_of_a_grandparent = [
                          'INDI:DEAT' => [
                              'M' => I18N::translate('Death of a grandfather'),
                              'F' => I18N::translate('Death of a grandmother'),
                              'U' => I18N::translate('Death of a grandparent'),
              Severity: Major
              Found in app/Services/IndividualFactsService.php and 8 other locations - About 2 hrs to fix
              app/Services/IndividualFactsService.php on lines 328..344
              app/Services/IndividualFactsService.php on lines 346..362
              app/Services/IndividualFactsService.php on lines 364..380
              app/Services/IndividualFactsService.php on lines 382..398
              app/Services/IndividualFactsService.php on lines 622..638
              app/Services/IndividualFactsService.php on lines 658..674
              app/Services/IndividualFactsService.php on lines 676..692
              app/Services/IndividualFactsService.php on lines 792..808

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

              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