Showing 5 of 5 total issues
Project
has 23 functions (exceeds 20 allowed). Consider refactoring. Open
class Project
{
/**
* @var Config Configuration of the tester.
*/
File Project.php
has 270 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace MultiTester;
use Composer\Semver\Semver;
Function seedCloneSetting
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
protected function seedCloneSetting(&$settings)
{
if (!isset($settings['clone'])) {
$this->seedSourceSetting($settings);
$this->checkSourceSetting($settings);
- 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 filterArguments
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
protected function filterArguments($arguments, $key)
{
$result = [];
$add = false;
$length = strlen($key) + 1;
- 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 seedSetting
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function seedSetting(&$settings, $key, $name, $defaultCommand)
{
$tester = $this->getConfig()->getTester();
if (!isset($settings[$key]) || $settings[$key] === 'default') {
- 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"