jeyroik/extas-installer

View on GitHub

Showing 13 of 13 total issues

Function all has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function all($where, int $limit = 0, int $offset = 0, array $orderBy = [], array $fields = [])
    {
        $items = [];

        foreach (self::$data as $item) {
Severity: Minor
Found in src/components/packages/PackageClassRepository.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 one has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function one($where, int $offset = 0, array $fields = [])
    {
        foreach (self::$data as $item) {
            $equal = true;
            foreach ($where as $field => $value) {
Severity: Minor
Found in src/components/packages/PackageClassRepository.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

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

    protected function configure()
    {
        $this
            ->setName('uninstall')
            ->setAliases(['u'])
Severity: Minor
Found in src/commands/UninstallCommand.php - About 1 hr to fix

    Method prepareContainer has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function prepareContainer(InputInterface $input, OutputInterface &$output): void
        {
            $containerRewrite = $input->getOption(static::OPTION__CONTAINER_REWRITE);
    
            $lockContainerPath = getenv('EXTAS__CONTAINER_PATH_STORAGE_LOCK')
    Severity: Minor
    Found in src/commands/InitCommand.php - About 1 hr to fix

      Method configure has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function configure()
          {
              $this
                  // the name of the command (the part after "bin/console")
                  ->setName('install')
      Severity: Minor
      Found in src/commands/InstallCommand.php - About 1 hr to fix

        Function isTheSame has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function isTheSame(IItem $existed, array $current): bool
            {
                $theSame = false;
        
                $stage = IStageItemSame::NAME . '.' . $this->getDottedName();
        Severity: Minor
        Found in src/components/plugins/install/InstallItem.php - About 55 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

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

        <?php
        namespace extas\components\plugins\uninstall;
        
        use extas\components\extensions\Extension;
        use extas\components\extensions\ExtensionRepository;
        Severity: Minor
        Found in src/components/plugins/uninstall/UninstallExtensions.php and 1 other location - About 40 mins to fix
        src/components/plugins/uninstall/UninstallPlugins.php on lines 1..31

        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 94.

        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
        namespace extas\components\plugins\uninstall;
        
        use extas\components\plugins\Plugin;
        use extas\components\plugins\PluginRepository;
        Severity: Minor
        Found in src/components/plugins/uninstall/UninstallPlugins.php and 1 other location - About 40 mins to fix
        src/components/plugins/uninstall/UninstallExtensions.php on lines 1..31

        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 94.

        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 all has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public function all($where, int $limit = 0, int $offset = 0, array $orderBy = [], array $fields = [])
        Severity: Minor
        Found in src/components/packages/PackageClassRepository.php - About 35 mins to fix

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

              protected function uninstallPackage(string $packageName, array $package): void
              {
                  $this->infoLn(['Uninstalling package ' . $packageName . '...']);
                  $this->runStage($packageName, $package, IStageUninstallPackage::NAME . '.' . $packageName);
                  $this->runStage($packageName, $package);
          Severity: Minor
          Found in src/components/plugins/uninstall/UninstallApplication.php and 1 other location - About 35 mins to fix
          src/components/plugins/uninstall/UninstallPackage.php on lines 73..79

          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 92.

          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

              protected function uninstallSection(string $sectionName, array $sectionData): void
              {
                  $this->infoLn(['Uninstalling section ' . $sectionName . '...']);
                  $this->runStage($sectionName, $sectionData, IStageUninstallSection::NAME . '.' . $sectionName);
                  $this->runStage($sectionName, $sectionData);
          Severity: Minor
          Found in src/components/plugins/uninstall/UninstallPackage.php and 1 other location - About 35 mins to fix
          src/components/plugins/uninstall/UninstallApplication.php on lines 72..78

          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 92.

          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

          Function delete has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public function delete($where, $item = null): int
              {
                  $byUID = $this->getDataByUID();
                  $deleted = 0;
          
          
          Severity: Minor
          Found in src/components/packages/PackageClassRepository.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 prepareContainer has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function prepareContainer(InputInterface $input, OutputInterface &$output): void
              {
                  $containerRewrite = $input->getOption(static::OPTION__CONTAINER_REWRITE);
          
                  $lockContainerPath = getenv('EXTAS__CONTAINER_PATH_STORAGE_LOCK')
          Severity: Minor
          Found in src/commands/InitCommand.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