wow-apps/symfony-packagist

View on GitHub

Showing 12 of 18 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<?php
/**
 * This file is part of the wow-apps/symfony-packagist project
 * https://github.com/wow-apps/symfony-packagist
 *
Severity: Major
Found in DTO/PackageAuthor.php and 1 other location - About 6 hrs to fix
DTO/PackageDist.php on lines 1..123

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 209.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<?php
/**
 * This file is part of the wow-apps/symfony-packagist project
 * https://github.com/wow-apps/symfony-packagist
 *
Severity: Major
Found in DTO/PackageDist.php and 1 other location - About 6 hrs to fix
DTO/PackageAuthor.php on lines 1..123

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 209.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method execute has 53 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        /** @var Packagist $packagist */
        $packagist = $this->getContainer()->get('wowapps.packagist');
        $argument = strtolower($input->getArgument('package_name'));
Severity: Major
Found in Command/WowAppsPackagistPackageCommand.php - About 2 hrs to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    <?php
    /**
     * This file is part of the wow-apps/symfony-packagist project
     * https://github.com/wow-apps/symfony-packagist
     *
    Severity: Major
    Found in DTO/PackageMaintainer.php and 1 other location - About 1 hr to fix
    DTO/PackageDependency.php on lines 1..74

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 113.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    <?php
    /**
     * This file is part of the wow-apps/symfony-packagist project
     * https://github.com/wow-apps/symfony-packagist
     *
    Severity: Major
    Found in DTO/PackageDependency.php and 1 other location - About 1 hr to fix
    DTO/PackageMaintainer.php on lines 1..77

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 113.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Method execute has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function execute(InputInterface $input, OutputInterface $output)
        {
            /** @var Packagist $packagist */
            $packagist = $this->getContainer()->get('wowapps.packagist');
            $searchQuery = strtolower($input->getArgument('search_query'));
    Severity: Minor
    Found in Command/WowAppsPackagistSearchCommand.php - About 1 hr to fix

      Method viewVersionHistory has 39 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function viewVersionHistory(SymfonyStyle $symfonyStyle, Package $package)
          {
              $versions = ['exit'];
              if (!empty($package->getVersions())) {
                  foreach ($package->getVersions() as $version) {
      Severity: Minor
      Found in Command/WowAppsPackagistPackageCommand.php - About 1 hr to fix

        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 '';
                }
        Severity: Minor
        Found in Service/Packagist.php - About 1 hr to fix

        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 viewVersionHistory has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            private function viewVersionHistory(SymfonyStyle $symfonyStyle, Package $package)
            {
                $versions = ['exit'];
                if (!empty($package->getVersions())) {
                    foreach ($package->getVersions() as $version) {
        Severity: Minor
        Found in Command/WowAppsPackagistPackageCommand.php - About 45 mins to fix

        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;
        Severity: Minor
        Found in Service/Packagist.php - About 35 mins to fix

        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'])) {
        Severity: Minor
        Found in Service/Packagist.php - About 35 mins to fix

        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
        Severity: Minor
        Found in Service/Packagist.php - About 25 mins to fix

        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

        Severity
        Category
        Status
        Source
        Language