b1tc0re/sitemap

View on GitHub

Showing 5 of 7 total issues

Function fillCollection has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    protected function fillCollection(string $path)
    {
        $content = file_get_contents($path);

        if (true === $this->useGzipCompress && $gzcontent = gzinflate(substr($content, 10, -8))) {
Severity: Minor
Found in src/Sitemap.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 write has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function write()
    {
        $collections = $this->collection->chunk($this->maxUrls, $chunks);

        $chunks > 1 && $indexMap = new Index($this->getFilePath(), $this->useGzipCompress);
Severity: Minor
Found in src/Sitemap.php - About 1 hr to fix

    Function write has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        public function write()
        {
            $collections = $this->collection->chunk($this->maxUrls, $chunks);
    
            $chunks > 1 && $indexMap = new Index($this->getFilePath(), $this->useGzipCompress);
    Severity: Minor
    Found in src/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

    Method fillCollection has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function fillCollection(string $path)
        {
            $content = file_get_contents($path);
    
            if (true === $this->useGzipCompress && $gzcontent = gzinflate(substr($content, 10, -8))) {
    Severity: Minor
    Found in src/Sitemap.php - About 1 hr to fix

      Function fillCollection has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function fillCollection()
          {
              $content = file_get_contents($this->getFilePath());
      
              if (true === $this->useGzipCompress && $gzcontent = gzinflate(substr($content, 10, -8))) {
      Severity: Minor
      Found in src/Index.php - About 45 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