squirrly/squirrly-seo

View on GitHub
classes/SQ_Sitemap.php

Summary

Maintainability
D
2 days
Test Coverage

Function generateSitemap has a Cognitive Complexity of 78 (exceeds 5 allowed). Consider refactoring.
Open

    public function generateSitemap() {
        global $wpdb, $wp_query, $wp_version;
        /* get the home url */
        $home = get_bloginfo('url');
        $homeID = 0;
Severity: Minor
Found in classes/SQ_Sitemap.php - About 1 day 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 generateSitemap has 144 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function generateSitemap() {
        global $wpdb, $wp_query, $wp_version;
        /* get the home url */
        $home = get_bloginfo('url');
        $homeID = 0;
Severity: Major
Found in classes/SQ_Sitemap.php - About 5 hrs to fix

    File SQ_Sitemap.php has 254 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * Class for Sitemap Generator
     */
    Severity: Minor
    Found in classes/SQ_Sitemap.php - About 2 hrs to fix

      Function saveSitemap has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          private function saveSitemap($data) {
              if (function_exists('gzopen') && function_exists('gzwrite') && function_exists('gzclose')) {
                  if (function_exists('file_exists') && file_exists($this->file . '.gz'))
                      @unlink($this->file . '.gz');
      
      Severity: Minor
      Found in classes/SQ_Sitemap.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

      There are no issues that match your filters.

      Category
      Status