Function resolveSourceConfig
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function resolveSourceConfig($patcherConfig)
{
$sourceConfig = $patcherConfig[PluginConfig::PATCHER_SOURCES];
if (isset($sourceConfig['packages'], $sourceConfig['vendors'])) {
- Read upRead up
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 '34', column '30'). Open
'vendors' => new \Vaimo\ComposerPatches\Sources\VendorSource(
- Read upRead up
- Exclude checks
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 '33', column '30'). Open
'project' => new \Vaimo\ComposerPatches\Sources\ProjectSource($this->composer->getPackage()),
- Read upRead up
- Exclude checks
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 '46', column '20'). Open
return new \Vaimo\ComposerPatches\Patch\SourcesResolver(
- Read upRead up
- Exclude checks
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 '39', column '31'). Open
'packages' => new \Vaimo\ComposerPatches\Sources\PackageSource(
- Read upRead up
- Exclude checks
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 "vendors" 10 times. Open
'vendors' => new \Vaimo\ComposerPatches\Sources\VendorSource(
- Read upRead up
- Exclude checks
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.
Define a constant instead of duplicating this literal "packages" 10 times. Open
'packages' => new \Vaimo\ComposerPatches\Sources\PackageSource(
- Read upRead up
- Exclude checks
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.
Property \Vaimo\ComposerPatches\Factories\SourcesResolverFactory->composer
has undeclared type \Composer\Composer
Open
private $composer;
- Exclude checks
Parameter $composer
has undeclared type \Composer\Composer
Open
public function __construct(
- Exclude checks
Call to method getPackage
from undeclared class \Composer\Composer
Open
'project' => new \Vaimo\ComposerPatches\Sources\ProjectSource($this->composer->getPackage()),
- Exclude checks