wow-apps/symfony-packagist

View on GitHub
Service/Packagist.php

Summary

Maintainability
A
2 hrs
Test Coverage

File Packagist.php has 308 lines of code (exceeds 250 allowed). Consider refactoring.
Wontfix

<?php
/**
 * This file is part of the wow-apps/symfony-packagist project
 * https://github.com/wow-apps/symfony-packagist
 *
Severity: Minor
Found in Service/Packagist.php - About 3 hrs to fix

    Method createPackageVersion has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Wontfix

        private function createPackageVersion(array  $version): PackageVersion
        {
            $packageVersion = new PackageVersion();
    
            $packageVersion
    Severity: Minor
    Found in Service/Packagist.php - About 1 hr to fix

      Method createPackageObject has 42 lines of code (exceeds 25 allowed). Consider refactoring.
      Wontfix

          private function createPackageObject(array $packageArray): Package
          {
              $package = new Package();
      
              $package
      Severity: Minor
      Found in Service/Packagist.php - About 1 hr to fix

        Method searchPackages has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Wontfix

            public function searchPackages(string $query, $tag = null, $type = null): \ArrayObject
            {
                $result = new \ArrayObject();
                $currentPage = 1;
                $request = self::API_URL_SEARCH;
        Severity: Minor
        Found in Service/Packagist.php - About 1 hr to fix

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

              private function identifyPackageVersion(Package $package): string
              {
                  if (empty($package->getVersions())) {
                      return '';
                  }
          Severity: Minor
          Found in Service/Packagist.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

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

              public function searchPackages(string $query, $tag = null, $type = null): \ArrayObject
              {
                  $result = new \ArrayObject();
                  $currentPage = 1;
                  $request = self::API_URL_SEARCH;
          Severity: Minor
          Found in Service/Packagist.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 addPackageVersions has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              private function addPackageVersions(Package &$package, array $packageArray)
              {
                  if (!empty($packageArray['package']['versions'])) {
                      foreach ($packageArray['package']['versions'] as $version) {
                          if (empty($version['version'])) {
          Severity: Minor
          Found in Service/Packagist.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 createPackageVersion has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              private function createPackageVersion(array  $version): PackageVersion
              {
                  $packageVersion = new PackageVersion();
          
                  $packageVersion
          Severity: Minor
          Found in Service/Packagist.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