vaimo/composer-patches

View on GitHub
src/Patch/Collector.php

Summary

Maintainability
A
25 mins
Test Coverage

Function collect has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    public function collect(array $packages)
    {
        $patchesByOwner = array();

        foreach ($packages as $package) {
Severity: Minor
Found in src/Patch/Collector.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

Missing class import via use statement (line '51', column '39').
Open

        $this->patchListUpdater = new \Vaimo\ComposerPatches\Patch\DefinitionList\Updater();
Severity: Minor
Found in src/Patch/Collector.php by phpmd

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

Define a constant instead of duplicating this literal "_config" 4 times.
Open

        $baseConfig = isset($configOrigin['_config']) ? $configOrigin['_config'] : array();
Severity: Critical
Found in src/Patch/Collector.php by sonar-php

Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

Noncompliant Code Example

With the default threshold of 3:

function run() {
  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
  execute('action1');
  release('action1');
}

Compliant Solution

ACTION_1 = 'action1';

function run() {
  prepare(ACTION_1);
  execute(ACTION_1);
  release(ACTION_1);
}

Exceptions

To prevent generating some false-positives, literals having less than 5 characters are excluded.

Rename "$sourceLoaders" which has the same name as the field declared at line 24.
Open

            $sourceLoaders = array_intersect_key($this->sourceLoaders, $config);
Severity: Major
Found in src/Patch/Collector.php by sonar-php

Shadowing fields with a local variable is a bad practice that reduces code readability: it makes it confusing to know whether the field or the variable is being used.

Noncompliant Code Example

class Foo {
  public $myField;

  public function doSomething() {
    $myField = 0;
    ...
  }
}

See

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

    public function collect(array $packages)
Severity: Minor
Found in src/Patch/Collector.php by phan

Checking instanceof against undeclared class \Composer\Package\RootPackage
Open

            PatchDefinition::OWNER_IS_ROOT => $package instanceof RootPackage
Severity: Critical
Found in src/Patch/Collector.php by phan

Call to method getName from undeclared class \Composer\Package\PackageInterface
Open

            $ownerName = $package->getName();
Severity: Critical
Found in src/Patch/Collector.php by phan

Call to method getName from undeclared class \Composer\Package\PackageInterface
Open

            PatchDefinition::OWNER => $package->getName(),
Severity: Critical
Found in src/Patch/Collector.php by phan

Parameter $package has undeclared type \Composer\Package\PackageInterface
Open

    private function updatePackagePatchesConfig(PackageInterface $package, array $patches)
Severity: Minor
Found in src/Patch/Collector.php by phan

There are no issues that match your filters.

Category
Status