GetDKAN/lunr.php

View on GitHub

Showing 6 of 6 total issues

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

      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 run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        public function run(array $tokens) {
          $pipelines = $this->stack;
          foreach ($pipelines as $fn) {
            $memo = [];
            foreach ($tokens as $token) {
      Severity: Minor
      Found in src/Pipeline.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