vaimo/composer-patches

View on GitHub
src/Patch/DefinitionList/LoaderComponents/SorterComponent.php

Summary

Maintainability
A
1 hr
Test Coverage

Function process has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    public function process(array $patches, array $packagesByName)
    {
        $sortKeys = array(PatchDefinition::BEFORE, PatchDefinition::AFTER);

        foreach ($patches as $patchTarget => $packagePatches) {
Severity: Minor
Found in src/Patch/DefinitionList/LoaderComponents/SorterComponent.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

Missing class import via use statement (line '19', column '34').
Open

        $this->filterUtils = new \Vaimo\ComposerPatches\Utils\FilterUtils();

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Missing class import via use statement (line '75', column '23').
Open

        $sorter = new \Vaimo\TopSort\Implementations\StringSort();

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Avoid unused parameters such as '$packagesByName'.
Open

    public function process(array $patches, array $packagesByName)

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Call to method sort from undeclared class \Vaimo\TopSort\Implementations\StringSort
Open

            array_flip($sorter->sort()),

Parameter $packagesByName has undeclared type \Composer\Package\PackageInterface[]
Open

    public function process(array $patches, array $packagesByName)

Call to method __construct from undeclared class \Vaimo\TopSort\Implementations\StringSort
Open

        $sorter = new \Vaimo\TopSort\Implementations\StringSort();

Call to method add from undeclared class \Vaimo\TopSort\Implementations\StringSort
Open

            $sorter->add($path, array_unique($depends));

There are no issues that match your filters.

Category
Status