protected/modules/zendsearch/vendors/Zend/Search/Lucene/Document/Html.php

Summary

Maintainability
D
1 day
Test Coverage

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

    private function __construct($data, $isFile, $storeContent, $defaultEncoding = '')
    {
        $this->_doc = new DOMDocument();
        $this->_doc->substituteEntities = true;

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 __construct has 78 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function __construct($data, $isFile, $storeContent, $defaultEncoding = '')
    {
        $this->_doc = new DOMDocument();
        $this->_doc->substituteEntities = true;

    File Html.php has 268 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * Zend Framework
     *
     * LICENSE

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

          protected function _highlightTextNode(DOMText $node, $wordsToHighlight, $callback, $params)
          {
              /** Zend_Search_Lucene_Analysis_Analyzer */
              require_once 'Zend/Search/Lucene/Analysis/Analyzer.php';
      
      

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

            public function highlightExtended($words, $callback, $params = [])
            {
                /** Zend_Search_Lucene_Analysis_Analyzer */
                require_once 'Zend/Search/Lucene/Analysis/Analyzer.php';
        
        

          Function _highlightNodeRecursive has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function _highlightNodeRecursive(DOMNode $contextNode, $wordsToHighlight, $callback, $params)
              {
                  $textNodes = [];
          
                  if (!$contextNode->hasChildNodes()) {

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

              protected function _highlightTextNode(DOMText $node, $wordsToHighlight, $callback, $params)
              {
                  /** Zend_Search_Lucene_Analysis_Analyzer */
                  require_once 'Zend/Search/Lucene/Analysis/Analyzer.php';
          
          

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

              private function _retrieveNodeText(DOMNode $node, &$text)
              {
                  if ($node->nodeType == XML_TEXT_NODE) {
                      $text .= $node->nodeValue;
                      if (!in_array($node->parentNode->tagName, $this->_inlineTags)) {

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

              public function highlightExtended($words, $callback, $params = [])
              {
                  /** Zend_Search_Lucene_Analysis_Analyzer */
                  require_once 'Zend/Search/Lucene/Analysis/Analyzer.php';
          
          

          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