biurad/cycle-bridge

View on GitHub

Showing 19 of 21 total issues

Function execute has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    protected function execute(InputInterface $input, OutputInterface $output): int
    {
        //Every available database
        $databases = $this->config->getDatabases();

Severity: Minor
Found in src/Commands/Database/ListCommand.php - About 2 hrs 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 execute has 60 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function execute(InputInterface $input, OutputInterface $output): int
    {
        //Every available database
        $databases = $this->config->getDatabases();

Severity: Major
Found in src/Commands/Database/ListCommand.php - About 2 hrs to fix

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

        protected function resolveTarget(Registry $registry, string $name): ?string
        {
            if (null === $name || \interface_exists($name, true)) {
                // do not resolve interfaces
                return $name;
    Severity: Minor
    Found in src/Annotated/Entities.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 run has 39 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function run(CapsuleInterface $capsule = null): ?MigrationInterface
        {
            if (!$this->isConfigured()) {
                throw new MigrationException('Unable to run migration, Migrator not configured');
            }
    Severity: Minor
    Found in src/Migrator.php - About 1 hr to fix

      Function normalizeNames has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function normalizeNames(Registry $registry): Registry
          {
              // resolve all the relation target names into roles
              foreach ($this->locator as $class) {
                  $class = new ReflectionClass($class);
      Severity: Minor
      Found in src/Annotated/Entities.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 normalizeNames has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function normalizeNames(Registry $registry): Registry
          {
              // resolve all the relation target names into roles
              foreach ($this->locator as $class) {
                  $class = new ReflectionClass($class);
      Severity: Minor
      Found in src/Annotated/Entities.php - About 1 hr to fix

        Method describeForeignKeys has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function describeForeignKeys(DatabaseInterface $database, array $foreignKeys, InputInterface $input): void
            {
                $this->sprintf(
                    "\n<fg=cyan>Foreign Keys of </fg=cyan><comment>%s.%s</comment>:\n",
                    $database->getName(),
        Severity: Minor
        Found in src/Commands/Database/TableCommand.php - About 1 hr to fix

          Function run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              public function run(Registry $registry): Registry
              {
                  /** @var EntitySchema[] $children */
                  $children = [];
          
          
          Severity: Minor
          Found in src/Annotated/Entities.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 run has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function run(Registry $registry): Registry
              {
                  /** @var EntitySchema[] $children */
                  $children = [];
          
          
          Severity: Minor
          Found in src/Annotated/Entities.php - About 1 hr to fix

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

                protected function describeColumns(AbstractTable $schema): void
                {
                    $columnsTable = $this->table->setHeaders(
                        [
                            'Column:',
            Severity: Minor
            Found in src/Commands/Database/TableCommand.php - About 1 hr to fix

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

                  protected function findParent(Registry $registry, string $class): ?string
                  {
                      $parents = \class_parents($class);
              
                      foreach (\array_reverse($parents) as $parent) {
              Severity: Minor
              Found in src/Annotated/Entities.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 verifyNoRelations has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function verifyNoRelations(EntitySchema $entity, ReflectionClass $class): void
                  {
                      foreach ($class->getProperties() as $property) {
                          try {
                              $ann = $this->reader->getPropertyAnnotations($property);
              Severity: Minor
              Found in src/Annotated/Embeddings.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 run has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function run(Registry $registry): Registry
                  {
                      $this->output->writeln('<info>Detecting schema changes:</info>');
              
                      $this->changes = [];
              Severity: Minor
              Found in src/Generators/ShowChanges.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 rollback has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function rollback(CapsuleInterface $capsule = null): ?MigrationInterface
                  {
                      if (!$this->isConfigured()) {
                          throw new MigrationException('Unable to run migration, Migrator not configured');
                      }
              Severity: Minor
              Found in src/Migrator.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 compile has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function compile(Registry $registry): array
                  {
                      foreach ($this->generators as $generator) {
                          if (!$generator instanceof GeneratorInterface) {
                              throw new CompilerException(\sprintf(
              Severity: Minor
              Found in src/Compiler.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 execute has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  protected function execute(InputInterface $input, OutputInterface $output): int
                  {
                      if (!$this->verifyConfigured($output)) {
                          return 1;
                      }
              Severity: Minor
              Found in src/Commands/Migrations/CycleCommand.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 run has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function run(CapsuleInterface $capsule = null): ?MigrationInterface
                  {
                      if (!$this->isConfigured()) {
                          throw new MigrationException('Unable to run migration, Migrator not configured');
                      }
              Severity: Minor
              Found in src/Migrator.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 resolve has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function resolve(ReflectionParameter $parameter, array $providedParameters)
                  {
                      $parameterType = $parameter->getType();
              
                      if (!$parameterType instanceof \ReflectionNamedType || $parameterType->isBuiltin()) {
              Severity: Minor
              Found in src/RepositoryValueResolver.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

              Function run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function run(Registry $registry): Registry
                  {
                      foreach ($this->locator as $class) {
                          try {
                              $class = new ReflectionClass($class);
              Severity: Minor
              Found in src/Annotated/Embeddings.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