squirrelphp/queries-bundle

View on GitHub
src/DependencyInjection/Compiler/LayersPass.php

Summary

Maintainability
B
4 hrs
Test Coverage
A
100%

Method getBaseImplementation has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function getBaseImplementation(ContainerBuilder $container, string $serviceId, array $tag): Definition
    {
        // Connection with this name already exists - each connection name has to be unique
        if ($container->hasDefinition('squirrel.connection.' . $tag['connectionName'])) {
            throw new \LogicException(
Severity: Minor
Found in src/DependencyInjection/Compiler/LayersPass.php - About 1 hr to fix

    Method createConnectionFromTag has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private function createConnectionFromTag(
            ContainerBuilder $container,
            string $id,
            array $tag,
            array $taggedServicesOrdered,
    Severity: Minor
    Found in src/DependencyInjection/Compiler/LayersPass.php - About 1 hr to fix

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

          private function sortLayers(array $taggedServices): array
          {
              // Ordered services according to priority
              $taggedServicesOrdered = [];
      
      
      Severity: Minor
      Found in src/DependencyInjection/Compiler/LayersPass.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

      Function getBaseImplementation has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          private function getBaseImplementation(ContainerBuilder $container, string $serviceId, array $tag): Definition
          {
              // Connection with this name already exists - each connection name has to be unique
              if ($container->hasDefinition('squirrel.connection.' . $tag['connectionName'])) {
                  throw new \LogicException(
      Severity: Minor
      Found in src/DependencyInjection/Compiler/LayersPass.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

      There are no issues that match your filters.

      Category
      Status