dubpub/publisher

View on GitHub

Showing 7 of 7 total issues

Function extractNotation has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

    private function extractNotation($fileString)
    {
        // removing extra space characters for further work
        $fileString = preg_replace('/(\ {0,1})/is', '', $fileString);

Severity: Minor
Found in src/Dubpub/Publisher/PublisherHandler.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

Function handlePackageGroup has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    private function handlePackageGroup($packagePath, $groupName, $fileList)
    {
        $this->output->writeln(
            "<info>  Handling group: </info>{$groupName}"
        );
Severity: Minor
Found in src/Dubpub/Publisher/PublisherHandler.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

Method handlePackageGroup has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function handlePackageGroup($packagePath, $groupName, $fileList)
    {
        $this->output->writeln(
            "<info>  Handling group: </info>{$groupName}"
        );
Severity: Minor
Found in src/Dubpub/Publisher/PublisherHandler.php - About 1 hr to fix

    Method extractNotation has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private function extractNotation($fileString)
        {
            // removing extra space characters for further work
            $fileString = preg_replace('/(\ {0,1})/is', '', $fileString);
    
    
    Severity: Minor
    Found in src/Dubpub/Publisher/PublisherHandler.php - About 1 hr to fix

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

          protected function valueToIni(array $data)
          {
              $result = "";
      
              foreach ($data as $section => $values) {
      Severity: Minor
      Found in src/Dubpub/Publisher/Handlers/INIHandler.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 checkParam has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          private function checkParam($paramName, $regExpAny, $regExpOne)
          {
              $value = $this->input->getArgument($paramName);
      
              if ($value != '*') {
      Severity: Minor
      Found in src/Dubpub/Publisher/Filters/PublishFilter.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

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

          public function mergeComposerPackages(IPublisherHandler $handler)
          {
              $extensions = implode(',', array_keys($this->typeHandlers));
      
              foreach ($files = glob($this->path . '/vendor/**/*') as $packageFolder) {
      Severity: Minor
      Found in src/Dubpub/Publisher/PublisherScanner.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

      Severity
      Category
      Status
      Source
      Language