VIPnytt/SitemapParser

View on GitHub
src/SitemapParser.php

Summary

Maintainability
D
1 day
Test Coverage
A
90%

File SitemapParser.php has 284 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace vipnytt;

use GuzzleHttp;
Severity: Minor
Found in src/SitemapParser.php - About 2 hrs to fix

    Function parseJson has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function parseJson($type, \SimpleXMLElement $json)
        {
            if (!isset($json->$type)) {
                return false;
            }
    Severity: Minor
    Found in src/SitemapParser.php - About 2 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

    SitemapParser has 23 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class SitemapParser
    {
        use UrlParser;
    
        /**
    Severity: Minor
    Found in src/SitemapParser.php - About 2 hrs to fix

      Function objectToArray has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function objectToArray($object)
          {
              if (is_object($object) || is_array($object)) {
                  if (is_object($object) && $object instanceof SimpleXMLElement and count($object->getNamespaces()) != 0 ) {
                      if (count($object->attributes()) != 0) {
      Severity: Minor
      Found in src/SitemapParser.php - About 2 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

      Function getContent has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function getContent()
          {
              $this->currentURL = $this->urlEncode($this->currentURL);
              if (!$this->urlValidate($this->currentURL)) {
                  throw new Exceptions\SitemapParserException('Invalid URL');
      Severity: Minor
      Found in src/SitemapParser.php - About 1 hr 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 getContent has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function getContent()
          {
              $this->currentURL = $this->urlEncode($this->currentURL);
              if (!$this->urlValidate($this->currentURL)) {
                  throw new Exceptions\SitemapParserException('Invalid URL');
      Severity: Minor
      Found in src/SitemapParser.php - About 1 hr to fix

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

            protected function parseRobotstxt($robotstxt)
            {
                // Split lines into array
                $lines = array_filter(array_map('trim', mb_split('\r\n|\n|\r', $robotstxt)));
                // Parse each line individually
        Severity: Minor
        Found in src/SitemapParser.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 parseString has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function parseString($string)
            {
                if (!isset($this->config['strict']) || $this->config['strict'] !== false) {
                    // Strings are not part of any documented sitemap standard
                    return false;
        Severity: Minor
        Found in src/SitemapParser.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

        There are no issues that match your filters.

        Category
        Status