studioespresso/craft-seo-fields

View on GitHub
src/migrations/Install.php

Summary

Maintainability
C
1 day
Test Coverage

Method createTables has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function createTables()
    {
        $tablesCreated = false;
        $tableSchema = Craft::$app->db->schema->getTableSchema(DefaultsRecord::tableName());
        if ($tableSchema === null) {
Severity: Major
Found in src/migrations/Install.php - About 2 hrs to fix

    Method addForeignKeys has 32 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function addForeignKeys()
        {
            // $name, $table, $columns, $refTable, $refColumns, $delete = null, $update = null)
            $this->addForeignKey(
                $this->db->getForeignKeyName(DefaultsRecord::tableName(), 'siteId'),
    Severity: Minor
    Found in src/migrations/Install.php - About 1 hr to fix

      Avoid using static access to class '\studioespresso\seofields\records\NotFoundRecord' in method 'addForeignKeys'.
      Open

                  $this->db->getForeignKeyName(NotFoundRecord::tableName(), 'redirect'),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\DefaultsRecord' in method 'addForeignKeys'.
      Open

                  DefaultsRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\NotFoundRecord' in method 'addForeignKeys'.
      Open

                  NotFoundRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\DefaultsRecord' in method 'createTables'.
      Open

                      DefaultsRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\DefaultsRecord' in method 'addForeignKeys'.
      Open

                  $this->db->getForeignKeyName(DefaultsRecord::tableName(), 'siteId'),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\DefaultsRecord' in method 'removeTables'.
      Open

              $this->dropTableIfExists(DefaultsRecord::tableName());
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\RedirectRecord' in method 'removeTables'.
      Open

              $this->dropTableIfExists(RedirectRecord::tableName());
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\RedirectRecord' in method 'createTables'.
      Open

                      RedirectRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\RedirectRecord' in method 'addForeignKeys'.
      Open

                  $this->db->getForeignKeyName(RedirectRecord::tableName(), 'siteId'),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\NotFoundRecord' in method 'addForeignKeys'.
      Open

                  $this->db->getForeignKeyName(NotFoundRecord::tableName(), 'siteId'),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\NotFoundRecord' in method 'addForeignKeys'.
      Open

                  NotFoundRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\NotFoundRecord' in method 'removeTables'.
      Open

              $this->dropTableIfExists(NotFoundRecord::tableName());
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\DefaultsRecord' in method 'createTables'.
      Open

              $tableSchema = Craft::$app->db->schema->getTableSchema(DefaultsRecord::tableName());
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\NotFoundRecord' in method 'createTables'.
      Open

                      NotFoundRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid using static access to class '\studioespresso\seofields\records\RedirectRecord' in method 'addForeignKeys'.
      Open

                  RedirectRecord::tableName(),
      Severity: Minor
      Found in src/migrations/Install.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Define a constant instead of duplicating this literal "redirect" 4 times.
      Open

                          'redirect' => $this->string(255)->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Define a constant instead of duplicating this literal "{{%sites}}" 3 times.
      Open

                  '{{%sites}}',
      Severity: Critical
      Found in src/migrations/Install.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Define a constant instead of duplicating this literal "dateUpdated" 3 times.
      Open

                          'dateUpdated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Define a constant instead of duplicating this literal "siteId" 10 times.
      Open

                  $default->setAttribute('siteId', $siteId);
      Severity: Critical
      Found in src/migrations/Install.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Define a constant instead of duplicating this literal "dateCreated" 3 times.
      Open

                          'dateCreated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Define a constant instead of duplicating this literal "CASCADE" 3 times.
      Open

                  'CASCADE'
      Severity: Critical
      Found in src/migrations/Install.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateCreated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to static property app from undeclared class \Craft
      Open

                  $default->setAttribute('robots', file_get_contents(Craft::$app->getVendorPath() . '/studioespresso/craft-seo-fields/src/templates/_placeholder/_robots.twig'));
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\records\DefaultsRecord::setAttribute
      Open

                  $default->setAttribute('robots', file_get_contents(Craft::$app->getVendorPath() . '/studioespresso/craft-seo-fields/src/templates/_placeholder/_robots.twig'));
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::integer
      Open

                          'siteId' => $this->integer(11)->defaultValue(null),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::addForeignKey (Did you mean expr->addForeignKeys())
      Open

              $this->addForeignKey(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to undeclared property \studioespresso\seofields\migrations\Install->db
      Open

                  $this->db->getForeignKeyName(NotFoundRecord::tableName(), 'siteId'),
      Severity: Minor
      Found in src/migrations/Install.php by phan

      Reference to static property app from undeclared class \Craft
      Invalid

              $this->driver = Craft::$app->getConfig()->getDb()->driver;
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\records\DefaultsRecord::save
      Open

                      $default->save();
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateCreated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateCreated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::createTable (Did you mean expr->createTables())
      Open

                  $this->createTable(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::integer
      Open

                          'siteId' => $this->integer(11)->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateUpdated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::createTable (Did you mean expr->createTables())
      Open

                  $this->createTable(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateLastHit' => $this->dateTime(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::integer
      Open

                          'siteId' => $this->integer(11)->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'referrer' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::integer
      Open

                          'redirect' => $this->integer(11),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::addForeignKey (Did you mean expr->addForeignKeys())
      Open

              $this->addForeignKey(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dropTableIfExists
      Open

              $this->dropTableIfExists(DefaultsRecord::tableName());
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateUpdated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::integer
      Open

                          'method' => $this->integer(3)->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'urlPath' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::boolean
      Open

                          'handled' => $this->boolean()->defaultValue(0),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::bigInteger
      Open

                          'counter' => $this->bigInteger(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dropTableIfExists
      Open

              $this->dropTableIfExists(NotFoundRecord::tableName());
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\records\DefaultsRecord::setAttribute
      Open

                  $default->setAttribute('siteId', $siteId);
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::primaryKey
      Open

                          'id' => $this->primaryKey(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::primaryKey
      Open

                          'id' => $this->primaryKey(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Class extends undeclared class \craft\db\Migration
      Open

      class Install extends Migration
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'defaultMeta' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to static property app from undeclared class \Craft
      Open

                  Craft::$app->db->schema->refresh();
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'robots' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::string
      Open

                          'pattern' => $this->string(255)->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::uid
      Invalid

                          'uid' => $this->uid(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'urlParams' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateLastHit' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to undeclared property \studioespresso\seofields\migrations\Install->db
      Open

                  $this->db->getForeignKeyName(DefaultsRecord::tableName(), 'siteId'),
      Severity: Minor
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\records\DefaultsRecord::validate
      Open

                  if ($default->validate()) {
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::boolean
      Open

                          'enableRobots' => $this->boolean()->defaultValue(1),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::string
      Open

                          'redirect' => $this->string(255)->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to static property app from undeclared class \Craft
      Invalid

              $this->driver = Craft::$app->getConfig()->getDb()->driver;
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::uid
      Invalid

                          'uid' => $this->uid(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'fullUrl' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::uid
      Invalid

                          'uid' => $this->uid(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to undeclared property \studioespresso\seofields\migrations\Install->db
      Open

                  $this->db->getForeignKeyName(NotFoundRecord::tableName(), 'redirect'),
      Severity: Minor
      Found in src/migrations/Install.php by phan

      Reference to undeclared property \studioespresso\seofields\migrations\Install->db
      Open

                  $this->db->getForeignKeyName(RedirectRecord::tableName(), 'siteId'),
      Severity: Minor
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dropTableIfExists
      Open

              $this->dropTableIfExists(RedirectRecord::tableName());
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\records\DefaultsRecord::setAttribute
      Open

                  $default->setAttribute('enableRobots', true);
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to static property app from undeclared class \Craft
      Open

              $tableSchema = Craft::$app->db->schema->getTableSchema(DefaultsRecord::tableName());
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::string
      Open

                          'matchType' => $this->string(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::dateTime
      Open

                          'dateUpdated' => $this->dateTime()->notNull(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::addForeignKey (Did you mean expr->addForeignKeys())
      Open

              $this->addForeignKey(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Reference to static property app from undeclared class \Craft
      Open

              $sites = Craft::$app->getSites()->getAllSiteIds();
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::createTable (Did you mean expr->createTables())
      Open

                  $this->createTable(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::primaryKey
      Open

                          'id' => $this->primaryKey(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::addForeignKey (Did you mean expr->addForeignKeys())
      Open

              $this->addForeignKey(
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'schema' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::text
      Open

                          'sitemap' => $this->text(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::string
      Open

                          'sourceMatch' => $this->string(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

      Call to undeclared method \studioespresso\seofields\migrations\Install::bigInteger
      Open

                          'counter' => $this->bigInteger(),
      Severity: Critical
      Found in src/migrations/Install.php by phan

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

                  $this->createTable(
                      RedirectRecord::tableName(),
                      [
                          'id' => $this->primaryKey(),
                          'siteId' => $this->integer(11)->defaultValue(null),
      Severity: Major
      Found in src/migrations/Install.php and 1 other location - About 3 hrs to fix
      src/migrations/m191114_201532_addRedirectsTable.php on lines 24..40

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

      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

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

                  $this->createTable(
                      NotFoundRecord::tableName(),
                      [
                          'id' => $this->primaryKey(),
                          'siteId' => $this->integer(11)->notNull(),
      Severity: Major
      Found in src/migrations/Install.php and 1 other location - About 3 hrs to fix
      src/migrations/m191114_182559_addNotFoundTable.php on lines 23..40

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

      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

      Line exceeds 120 characters; contains 171 characters
      Open

                  $default->setAttribute('robots', file_get_contents(Craft::$app->getVendorPath() . '/studioespresso/craft-seo-fields/src/templates/_placeholder/_robots.twig'));
      Severity: Minor
      Found in src/migrations/Install.php by phpcodesniffer

      There are no issues that match your filters.

      Category
      Status