File Packagist.php
has 308 lines of code (exceeds 250 allowed). Consider refactoring. Wontfix
<?php
/**
* This file is part of the wow-apps/symfony-packagist project
* https://github.com/wow-apps/symfony-packagist
*
Method createPackageVersion
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Wontfix
private function createPackageVersion(array $version): PackageVersion
{
$packageVersion = new PackageVersion();
$packageVersion
Method createPackageObject
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Wontfix
private function createPackageObject(array $packageArray): Package
{
$package = new Package();
$package
Method searchPackages
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Wontfix
public function searchPackages(string $query, $tag = null, $type = null): \ArrayObject
{
$result = new \ArrayObject();
$currentPage = 1;
$request = self::API_URL_SEARCH;
Function identifyPackageVersion
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
private function identifyPackageVersion(Package $package): string
{
if (empty($package->getVersions())) {
return '';
}
- 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 searchPackages
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function searchPackages(string $query, $tag = null, $type = null): \ArrayObject
{
$result = new \ArrayObject();
$currentPage = 1;
$request = self::API_URL_SEARCH;
- 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 addPackageVersions
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function addPackageVersions(Package &$package, array $packageArray)
{
if (!empty($packageArray['package']['versions'])) {
foreach ($packageArray['package']['versions'] as $version) {
if (empty($version['version'])) {
- 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 createPackageVersion
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function createPackageVersion(array $version): PackageVersion
{
$packageVersion = new PackageVersion();
$packageVersion
- 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"