propelorm/Propel2

View on GitHub

Showing 740 of 740 total issues

TableMap has 52 functions (exceeds 20 allowed). Consider refactoring.
Open

class TableMap
{
    /**
     * phpname type
     * e.g. 'AuthorId'
Severity: Major
Found in src/Propel/Runtime/Map/TableMap.php - About 7 hrs to fix

    Function addForeignKeys has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function addForeignKeys(Table $table): void
        {
            $database = $table->getDatabase();
    
            $dataFetcher = $this->dbh->query(sprintf('SHOW CREATE TABLE %s', $this->getPlatform()->doQuoting($table->getName())));
    Severity: Minor
    Found in src/Propel/Generator/Reverse/MysqlSchemaParser.php - About 7 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 startElement has 171 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function startElement($parser, string $tagName, array $attributes): void
        {
            $parentTag = $this->peekCurrentSchemaTag();
            if ($parentTag === false) {
                switch ($tagName) {
    Severity: Major
    Found in src/Propel/Generator/Builder/Util/SchemaReader.php - About 6 hrs to fix

      Function setupReferrers has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
      Open

          public function setupReferrers(bool $throwErrors = false): void
          {
              foreach ($this->foreignKeys as $foreignKey) {
                  // table referrers
                  $foreignTable = $this->database->getTable($foreignKey->getForeignTableName());
      Severity: Minor
      Found in src/Propel/Generator/Model/Table.php - About 6 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

      Join has 48 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Join
      {
          // default comparison type
          /**
           * @var string
      Severity: Minor
      Found in src/Propel/Runtime/ActiveQuery/Join.php - About 6 hrs to fix

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

            protected function execute(InputInterface $input, OutputInterface $output): int
            {
                $configOptions = [];
        
                if ($this->hasInputOption('output-dir', $input)) {
        Severity: Minor
        Found in src/Propel/Generator/Command/MigrationUpCommand.php - About 6 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

        Function compareTables has a Cognitive Complexity of 43 (exceeds 5 allowed). Consider refactoring.
        Open

            public function compareTables(bool $caseInsensitive = false): int
            {
                $fromDatabaseTables = $this->fromDatabase->getTables();
                $toDatabaseTables = $this->toDatabase->getTables();
                $databaseDifferences = 0;
        Severity: Minor
        Found in src/Propel/Generator/Model/Diff/DatabaseComparator.php - About 6 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

        Function applyLimit has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
        Open

            public function applyLimit(string &$sql, int $offset, int $limit, ?Criteria $criteria = null): void
            {
                // split the select and from clauses out of the original query
                $selectStatement = '';
                $fromStatement = '';
        Severity: Minor
        Found in src/Propel/Runtime/Adapter/Pdo/MssqlAdapter.php - About 6 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

        Collection has 46 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class Collection implements ArrayAccess, IteratorAggregate, Countable, Serializable
        {
            /**
             * @var string
             */
        Severity: Minor
        Found in src/Propel/Runtime/Collection/Collection.php - About 6 hrs to fix

          Function findMethod has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
          Open

              public function findMethod(string $methodName)
              {
                  if (isset($this->knownMethodCache[$methodName])) {
                      return $this->knownMethodCache[$methodName];
                  }
          Severity: Minor
          Found in src/Propel/Generator/Util/PhpParser.php - About 5 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 143 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected function execute(InputInterface $input, OutputInterface $output): int
              {
                  $configOptions = [];
          
                  if ($this->hasInputOption('connection', $input)) {
          Severity: Major
          Found in src/Propel/Generator/Command/MigrationDiffCommand.php - About 5 hrs to fix

            File MysqlSchemaParser.php has 404 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php
            
            /**
             * MIT License. This file is part of the Propel package.
             * For the full copyright and license information, please view the LICENSE
            Severity: Minor
            Found in src/Propel/Generator/Reverse/MysqlSchemaParser.php - About 5 hrs to fix

              TableMapBuilder has 42 functions (exceeds 20 allowed). Consider refactoring.
              Open

              class TableMapBuilder extends AbstractOMBuilder
              {
                  /**
                   * Gets the package for the map builder classes.
                   *
              Severity: Minor
              Found in src/Propel/Generator/Builder/Om/TableMapBuilder.php - About 5 hrs to fix

                PgsqlPlatform has 42 functions (exceeds 20 allowed). Consider refactoring.
                Open

                class PgsqlPlatform extends DefaultPlatform
                {
                    /**
                     * @var string
                     */
                Severity: Minor
                Found in src/Propel/Generator/Platform/PgsqlPlatform.php - About 5 hrs to fix

                  Function equals has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function equals(self $crit): bool
                      {
                          if ($this === $crit) {
                              return true;
                          }
                  Severity: Minor
                  Found in src/Propel/Runtime/ActiveQuery/Criteria.php - About 5 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

                  Function getColumnFromRow has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function getColumnFromRow(array $row, Table $table): Column
                      {
                          $name = $row['Field'];
                          $isNullable = ($row['Null'] === 'YES');
                          $autoincrement = (strpos($row['Extra'], 'auto_increment') !== false);
                  Severity: Minor
                  Found in src/Propel/Generator/Reverse/MysqlSchemaParser.php - About 5 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

                  File MigrationManager.php has 399 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  <?php
                  
                  /**
                   * MIT License. This file is part of the Propel package.
                   * For the full copyright and license information, please view the LICENSE
                  Severity: Minor
                  Found in src/Propel/Generator/Manager/MigrationManager.php - About 5 hrs to fix

                    Method addFilterByCol has 139 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        protected function addFilterByCol(string &$script, Column $col): void
                        {
                            $colPhpName = $col->getPhpName();
                            $colName = $col->getName();
                            $variableName = $col->getCamelCaseName();
                    Severity: Major
                    Found in src/Propel/Generator/Builder/Om/QueryBuilder.php - About 5 hrs to fix

                      File SqlitePlatform.php has 395 lines of code (exceeds 250 allowed). Consider refactoring.
                      Open

                      <?php
                      
                      /**
                       * MIT License. This file is part of the Propel package.
                       * For the full copyright and license information, please view the LICENSE
                      Severity: Minor
                      Found in src/Propel/Generator/Platform/SqlitePlatform.php - About 5 hrs to fix

                        File TableMap.php has 394 lines of code (exceeds 250 allowed). Consider refactoring.
                        Open

                        <?php
                        
                        /**
                         * MIT License. This file is part of the Propel package.
                         * For the full copyright and license information, please view the LICENSE
                        Severity: Minor
                        Found in src/Propel/Runtime/Map/TableMap.php - About 5 hrs to fix
                          Severity
                          Category
                          Status
                          Source
                          Language