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);
- 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
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}"
);
- 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
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}"
);
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);
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) {
- 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
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 != '*') {
- 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
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) {
- 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"