fisharebest/webtrees

View on GitHub

Showing 2,400 of 2,400 total issues

Identical blocks of code found in 9 locations. Consider refactoring.
Open

                        } elseif ($element instanceof XrefNote && $linked->type !== Note::RECORD_TYPE) {
                            $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Note::RECORD_TYPE);
                            $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                        } elseif ($element instanceof XrefSource && $linked->type !== Source::RECORD_TYPE) {
Severity: Major
Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
app/Http/RequestHandlers/CheckTree.php on lines 230..233
app/Http/RequestHandlers/CheckTree.php on lines 233..236
app/Http/RequestHandlers/CheckTree.php on lines 236..239
app/Http/RequestHandlers/CheckTree.php on lines 242..245
app/Http/RequestHandlers/CheckTree.php on lines 245..248
app/Http/RequestHandlers/CheckTree.php on lines 248..251
app/Http/RequestHandlers/CheckTree.php on lines 251..254
app/Http/RequestHandlers/CheckTree.php on lines 254..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 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 9 locations. Consider refactoring.
Open

                        } elseif ($element instanceof XrefSource && $linked->type !== Source::RECORD_TYPE) {
                            $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Source::RECORD_TYPE);
                            $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                        } elseif ($element instanceof XrefRepository && $linked->type !== Repository::RECORD_TYPE) {
Severity: Major
Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
app/Http/RequestHandlers/CheckTree.php on lines 230..233
app/Http/RequestHandlers/CheckTree.php on lines 233..236
app/Http/RequestHandlers/CheckTree.php on lines 236..239
app/Http/RequestHandlers/CheckTree.php on lines 239..242
app/Http/RequestHandlers/CheckTree.php on lines 245..248
app/Http/RequestHandlers/CheckTree.php on lines 248..251
app/Http/RequestHandlers/CheckTree.php on lines 251..254
app/Http/RequestHandlers/CheckTree.php on lines 254..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 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 9 locations. Consider refactoring.
Open

                        } elseif ($element instanceof XrefSubmission && $linked->type !== Submission::RECORD_TYPE) {
                            $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Submission::RECORD_TYPE);
                            $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                        } elseif ($element instanceof XrefLocation && $linked->type !== Location::RECORD_TYPE) {
Severity: Major
Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
app/Http/RequestHandlers/CheckTree.php on lines 230..233
app/Http/RequestHandlers/CheckTree.php on lines 233..236
app/Http/RequestHandlers/CheckTree.php on lines 236..239
app/Http/RequestHandlers/CheckTree.php on lines 239..242
app/Http/RequestHandlers/CheckTree.php on lines 242..245
app/Http/RequestHandlers/CheckTree.php on lines 245..248
app/Http/RequestHandlers/CheckTree.php on lines 248..251
app/Http/RequestHandlers/CheckTree.php on lines 254..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 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 9 locations. Consider refactoring.
Open

                        } elseif ($element instanceof XrefRepository && $linked->type !== Repository::RECORD_TYPE) {
                            $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Repository::RECORD_TYPE);
                            $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                        } elseif ($element instanceof XrefSubmitter && $linked->type !== Submitter::RECORD_TYPE) {
Severity: Major
Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
app/Http/RequestHandlers/CheckTree.php on lines 230..233
app/Http/RequestHandlers/CheckTree.php on lines 233..236
app/Http/RequestHandlers/CheckTree.php on lines 236..239
app/Http/RequestHandlers/CheckTree.php on lines 239..242
app/Http/RequestHandlers/CheckTree.php on lines 242..245
app/Http/RequestHandlers/CheckTree.php on lines 248..251
app/Http/RequestHandlers/CheckTree.php on lines 251..254
app/Http/RequestHandlers/CheckTree.php on lines 254..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 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 9 locations. Consider refactoring.
Open

                        } elseif ($element instanceof XrefSubmitter && $linked->type !== Submitter::RECORD_TYPE) {
                            $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Submitter::RECORD_TYPE);
                            $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                        } elseif ($element instanceof XrefSubmission && $linked->type !== Submission::RECORD_TYPE) {
Severity: Major
Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
app/Http/RequestHandlers/CheckTree.php on lines 230..233
app/Http/RequestHandlers/CheckTree.php on lines 233..236
app/Http/RequestHandlers/CheckTree.php on lines 236..239
app/Http/RequestHandlers/CheckTree.php on lines 239..242
app/Http/RequestHandlers/CheckTree.php on lines 242..245
app/Http/RequestHandlers/CheckTree.php on lines 245..248
app/Http/RequestHandlers/CheckTree.php on lines 251..254
app/Http/RequestHandlers/CheckTree.php on lines 254..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 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

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

    private function sourceQuery(Tree $tree, bool $sort_by_xref): Builder
    {
        $query = DB::table('sources')
            ->where('s_file', '=', $tree->id())
            ->select(['s_gedcom', 's_id']);
Severity: Major
Found in app/Services/GedcomExportService.php and 3 other locations - About 30 mins to fix
app/Services/GedcomExportService.php on lines 385..398
app/Services/GedcomExportService.php on lines 406..419
app/Services/GedcomExportService.php on lines 448..461

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

Avoid too many return statements within this method.
Open

        return ltrim($subrec);
Severity: Major
Found in app/Report/ReportParserGenerate.php - About 30 mins to fix

    Identical blocks of code found in 9 locations. Consider refactoring.
    Open

                            } elseif ($element instanceof XrefFamily && $linked->type !== Family::RECORD_TYPE) {
                                $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Family::RECORD_TYPE);
                                $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                            } elseif ($element instanceof XrefIndividual && $linked->type !== Individual::RECORD_TYPE) {
    Severity: Major
    Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
    app/Http/RequestHandlers/CheckTree.php on lines 233..236
    app/Http/RequestHandlers/CheckTree.php on lines 236..239
    app/Http/RequestHandlers/CheckTree.php on lines 239..242
    app/Http/RequestHandlers/CheckTree.php on lines 242..245
    app/Http/RequestHandlers/CheckTree.php on lines 245..248
    app/Http/RequestHandlers/CheckTree.php on lines 248..251
    app/Http/RequestHandlers/CheckTree.php on lines 251..254
    app/Http/RequestHandlers/CheckTree.php on lines 254..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 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 9 locations. Consider refactoring.
    Open

                            } elseif ($element instanceof XrefIndividual && $linked->type !== Individual::RECORD_TYPE) {
                                $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Individual::RECORD_TYPE);
                                $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                            } elseif ($element instanceof XrefMedia && $linked->type !== Media::RECORD_TYPE) {
    Severity: Major
    Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
    app/Http/RequestHandlers/CheckTree.php on lines 230..233
    app/Http/RequestHandlers/CheckTree.php on lines 236..239
    app/Http/RequestHandlers/CheckTree.php on lines 239..242
    app/Http/RequestHandlers/CheckTree.php on lines 242..245
    app/Http/RequestHandlers/CheckTree.php on lines 245..248
    app/Http/RequestHandlers/CheckTree.php on lines 248..251
    app/Http/RequestHandlers/CheckTree.php on lines 251..254
    app/Http/RequestHandlers/CheckTree.php on lines 254..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 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 9 locations. Consider refactoring.
    Open

                            } elseif ($element instanceof XrefMedia && $linked->type !== Media::RECORD_TYPE) {
                                $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Media::RECORD_TYPE);
                                $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                            } elseif ($element instanceof XrefNote && $linked->type !== Note::RECORD_TYPE) {
    Severity: Major
    Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
    app/Http/RequestHandlers/CheckTree.php on lines 230..233
    app/Http/RequestHandlers/CheckTree.php on lines 233..236
    app/Http/RequestHandlers/CheckTree.php on lines 239..242
    app/Http/RequestHandlers/CheckTree.php on lines 242..245
    app/Http/RequestHandlers/CheckTree.php on lines 245..248
    app/Http/RequestHandlers/CheckTree.php on lines 248..251
    app/Http/RequestHandlers/CheckTree.php on lines 251..254
    app/Http/RequestHandlers/CheckTree.php on lines 254..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 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

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

        private function familyQuery(Tree $tree, bool $sort_by_xref): Builder
        {
            $query = DB::table('families')
                ->where('f_file', '=', $tree->id())
                ->select(['f_gedcom', 'f_id']);
    Severity: Major
    Found in app/Services/GedcomExportService.php and 3 other locations - About 30 mins to fix
    app/Services/GedcomExportService.php on lines 406..419
    app/Services/GedcomExportService.php on lines 427..440
    app/Services/GedcomExportService.php on lines 448..461

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

                            } elseif ($element instanceof XrefLocation && $linked->type !== Location::RECORD_TYPE) {
                                $message  = $this->linkErrorMessage($tree, $xref1, $linked->type, Location::RECORD_TYPE);
                                $errors[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_tag . '-type');
                            } elseif (($full_tag === 'FAM:HUSB' || $full_tag === 'FAM:WIFE') && !str_contains($linked->gedcom, "\n1 FAMS @" . $record->xref . '@')) {
    Severity: Major
    Found in app/Http/RequestHandlers/CheckTree.php and 8 other locations - About 30 mins to fix
    app/Http/RequestHandlers/CheckTree.php on lines 230..233
    app/Http/RequestHandlers/CheckTree.php on lines 233..236
    app/Http/RequestHandlers/CheckTree.php on lines 236..239
    app/Http/RequestHandlers/CheckTree.php on lines 239..242
    app/Http/RequestHandlers/CheckTree.php on lines 242..245
    app/Http/RequestHandlers/CheckTree.php on lines 245..248
    app/Http/RequestHandlers/CheckTree.php on lines 248..251
    app/Http/RequestHandlers/CheckTree.php on lines 251..254

    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

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

                    $select2 = DB::table('placelocation')
                        ->leftJoin('place_location', 'id', '=', 'pl_id')
                        ->whereNull('id')
                        ->orderBy('pl_level')
                        ->orderBy('pl_id')
    Severity: Minor
    Found in app/Schema/Migration44.php and 1 other location - About 30 mins to fix
    app/Schema/Migration44.php on lines 141..152

    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

    Avoid too many return statements within this method.
    Open

            return '';
    Severity: Major
    Found in app/Report/ReportParserGenerate.php - About 30 mins to fix

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

          private function individualQuery(Tree $tree, bool $sort_by_xref): Builder
          {
              $query = DB::table('individuals')
                  ->where('i_file', '=', $tree->id())
                  ->select(['i_gedcom', 'i_id']);
      Severity: Major
      Found in app/Services/GedcomExportService.php and 3 other locations - About 30 mins to fix
      app/Services/GedcomExportService.php on lines 385..398
      app/Services/GedcomExportService.php on lines 427..440
      app/Services/GedcomExportService.php on lines 448..461

      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

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

          private function mediaQuery(Tree $tree, bool $sort_by_xref): Builder
          {
              $query = DB::table('media')
                  ->where('m_file', '=', $tree->id())
                  ->select(['m_gedcom', 'm_id']);
      Severity: Major
      Found in app/Services/GedcomExportService.php and 3 other locations - About 30 mins to fix
      app/Services/GedcomExportService.php on lines 385..398
      app/Services/GedcomExportService.php on lines 406..419
      app/Services/GedcomExportService.php on lines 427..440

      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

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

                      $select1 = DB::table('placelocation')
                          ->leftJoin('place_location', 'id', '=', 'pl_id')
                          ->whereNull('id')
                          ->orderBy('pl_level')
                          ->orderBy('pl_id')
      Severity: Minor
      Found in app/Schema/Migration44.php and 1 other location - About 30 mins to fix
      app/Schema/Migration44.php on lines 155..166

      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

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

          protected function getPedigreeMapFacts(ServerRequestInterface $request, ChartService $chart_service): array
          {
              $tree        = Validator::attributes($request)->tree();
              $generations = Validator::attributes($request)->isBetween(self::MINIMUM_GENERATIONS, self::MAXIMUM_GENERATIONS)->integer('generations');
              $xref        = Validator::attributes($request)->isXref()->string('xref');
      Severity: Minor
      Found in app/Module/PedigreeMapModule.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 process has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
          {
              $route = Validator::attributes($request)->route();
              $tree  = Validator::attributes($request)->treeOptional();
              $user  = Validator::attributes($request)->user();
      Severity: Minor
      Found in app/Module/HitCountFooterModule.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 process has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
          {
              if ($this->upgrade_service->isUpgradeAvailable()) {
                  $latest_version       = $this->upgrade_service->latestVersion();
                  $latest_version_email = Site::getPreference('LATEST_WT_VERSION_EMAIL');
      Severity: Minor
      Found in app/Module/CheckForNewVersion.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

      Severity
      Category
      Status
      Source
      Language