vaimo/composer-patches

View on GitHub
src/Factories/ConfigFactory.php

Summary

Maintainability
B
5 hrs
Test Coverage

Function resolveValidSubOperations has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    private function resolveValidSubOperations(array $config, array $subConfigKeys)
    {
        $subOperationKeys = array_merge(
            array_filter($subConfigKeys),
            array(PluginConfig::OS_DEFAULT)
Severity: Minor
Found in src/Factories/ConfigFactory.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 create has 35 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function create(array $configSources = array())
    {
        $defaults = array_replace(
            $this->defaultsProvider->getPatcherConfig(),
            $this->defaults,
Severity: Minor
Found in src/Factories/ConfigFactory.php - About 1 hr to fix

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

        public function create(array $configSources = array())
        {
            $defaults = array_replace(
                $this->defaultsProvider->getPatcherConfig(),
                $this->defaults,
    Severity: Minor
    Found in src/Factories/ConfigFactory.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 resolvePatcherConfigBase has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        private function resolvePatcherConfigBase(array $extra, $rootKey)
        {
            $patcherConfig = isset($extra[$rootKey]) ? $extra[$rootKey] : array();
    
            if ($patcherConfig === false) {
    Severity: Minor
    Found in src/Factories/ConfigFactory.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 '56', column '30').
    Open

            $this->context = new \Vaimo\ComposerPatches\Config\Context();
    Severity: Minor
    Found in src/Factories/ConfigFactory.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

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

            $this->configUtils = new \Vaimo\ComposerPatches\Utils\ConfigUtils();
    Severity: Minor
    Found in src/Factories/ConfigFactory.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

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

            $this->defaultsProvider = new \Vaimo\ComposerPatches\Config\Defaults();
    Severity: Minor
    Found in src/Factories/ConfigFactory.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

    Missing class import via use statement (line '57', column '32').
    Open

            $this->dataUtils = new \Vaimo\ComposerPatches\Utils\DataUtils();
    Severity: Minor
    Found in src/Factories/ConfigFactory.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

    Rename "$defaults" which has the same name as the field declared at line 36.
    Open

            $defaults = array_replace(
    Severity: Major
    Found in src/Factories/ConfigFactory.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

    Define a constant instead of duplicating this literal "patchers" 3 times.
    Open

                if (isset($patcherConfig['patchers']) && !isset($patcherConfig[PluginConfig::PATCHER_APPLIERS])) {
    Severity: Critical
    Found in src/Factories/ConfigFactory.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.

    Call to method getPackage from undeclared class \Composer\Composer
    Open

            $extra = $composer->getPackage()->getExtra();
    Severity: Critical
    Found in src/Factories/ConfigFactory.php by phan

    There are no issues that match your filters.

    Category
    Status