GetDKAN/lunr.php

View on GitHub
src/BuildLunrIndex.php

Summary

Maintainability
B
6 hrs
Test Coverage

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

  public function add(array $doc) {
    $id = $doc[$this->ref];
    $this->documentCount++;

    foreach ($this->fields as $field) {
Severity: Minor
Found in src/BuildLunrIndex.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 add has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  public function add(array $doc) {
    $id = $doc[$this->ref];
    $this->documentCount++;

    foreach ($this->fields as $field) {
Severity: Minor
Found in src/BuildLunrIndex.php - About 1 hr to fix

    Method newFieldEntry has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      private function newFieldEntry(string $term, array $fields, string $field, int $termIndex, string $identifier) {
    Severity: Minor
    Found in src/BuildLunrIndex.php - About 35 mins to fix

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

        private function getTermInIndex(string $term, $index, $id = FALSE) {
          $i = 0;
          foreach ($index as $entry) {
            if ($term == $entry[0]) {
              if ($id) {
      Severity: Minor
      Found in src/BuildLunrIndex.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 createFieldVectors has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        private function createFieldVectors() {
          $fieldVectors = [];
      
          $termCache = [];
          $score = 0;
      Severity: Minor
      Found in src/BuildLunrIndex.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

      There are no issues that match your filters.

      Category
      Status