Showing 7 of 7 total issues
Method renderBlocks
has 81 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function renderBlocks(array $outdatedPackages): array
{
$hasInsecurePackages = false;
$count = count($outdatedPackages);
$remainingPackages = $count;
Method report
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function report(UpdateCheckResult $result): bool
{
// Fall back to default output behavior if no custom behavior is defined
if (null === $this->behavior) {
$this->behavior = $this->getDefaultBehavior();
Method parseHtmlBody
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function parseHtmlBody(array $outdatedPackages): string
{
$html = [];
if (null !== $this->projectName) {
Function renderBlocks
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private function renderBlocks(array $outdatedPackages): array
{
$hasInsecurePackages = false;
$count = count($outdatedPackages);
$remainingPackages = $count;
- 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 arrayDiffRecursive
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public static function arrayDiffRecursive(array $array1, array $array2): array
{
$difference = [];
foreach ($array1 as $key => $value) {
if (!array_key_exists($key, $array2)) {
- 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 report
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function report(UpdateCheckResult $result): bool
{
// Fall back to default output behavior if no custom behavior is defined
if (null === $this->behavior) {
$this->behavior = $this->getDefaultBehavior();
- 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 buildServicesFromConfiguration
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function buildServicesFromConfiguration(): array
{
$services = [];
// Resolve project name from root composer.json
- 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"