keboola/php-datatypes

View on GitHub
src/Definition/Snowflake.php

Summary

Maintainability
F
4 days
Test Coverage

Showing 14 of 16 total issues

Function validateLength has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
Open

private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_NUMBER:
Severity: Minor
Found in src/Definition/Snowflake.php - About 6 hrs to fix

Method validateLength has 89 lines of code (exceeds 25 allowed). Consider refactoring.
Open

private function validateLength(string $type, $length = null): void
{
$valid = true;
switch (strtoupper($type)) {
case self::TYPE_NUMBER:
Severity: Major
Found in src/Definition/Snowflake.php - About 3 hrs to fix

    File Snowflake.php has 312 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
     
    declare(strict_types=1);
     
    namespace Keboola\Datatype\Definition;
    Severity: Minor
    Found in src/Definition/Snowflake.php - About 3 hrs to fix

      The class Snowflake has an overall complexity of 100 which is very high. The configured complexity threshold is 50.
      Wontfix

      class Snowflake extends Common
      {
      public const METADATA_BACKEND = 'snowflake';
      public const TYPE_NUMBER = 'NUMBER';
      public const TYPE_DECIMAL = 'DECIMAL';
      Severity: Minor
      Found in src/Definition/Snowflake.php by phpmd

      Method getBasetype has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      public function getBasetype(): string
      {
      switch (strtoupper($this->type)) {
      case self::TYPE_INT:
      case self::TYPE_INTEGER:
      Severity: Minor
      Found in src/Definition/Snowflake.php - About 1 hr to fix

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

        public function getBasetype(): string
        {
        switch (strtoupper($this->type)) {
        case self::TYPE_INT:
        case self::TYPE_INTEGER:
        Severity: Minor
        Found in src/Definition/Snowflake.php - About 45 mins to fix

        Avoid too many return statements within this method.
        Open

        return self::TYPE_VARCHAR;
        Severity: Major
        Found in src/Definition/Snowflake.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

          return self::TYPE_TIMESTAMP;
          Severity: Major
          Found in src/Definition/Snowflake.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

            return self::TYPE_NUMBER;
            Severity: Major
            Found in src/Definition/Snowflake.php - About 30 mins to fix

              The method validateLength() has an NPath complexity of 1002. The configured NPath complexity threshold is 200.
              Open

              private function validateLength(string $type, $length = null): void
              {
              $valid = true;
              switch (strtoupper($type)) {
              case self::TYPE_NUMBER:
              Severity: Minor
              Found in src/Definition/Snowflake.php by phpmd

              The method getBasetype() has a Cyclomatic Complexity of 23. The configured cyclomatic complexity threshold is 10.
              Wontfix

              public function getBasetype(): string
              {
              switch (strtoupper($this->type)) {
              case self::TYPE_INT:
              case self::TYPE_INTEGER:
              Severity: Minor
              Found in src/Definition/Snowflake.php by phpmd

              The method validateLength() has a Cyclomatic Complexity of 46. The configured cyclomatic complexity threshold is 10.
              Open

              private function validateLength(string $type, $length = null): void
              {
              $valid = true;
              switch (strtoupper($type)) {
              case self::TYPE_NUMBER:
              Severity: Minor
              Found in src/Definition/Snowflake.php by phpmd

              Avoid using static access to class 'Keboola\Datatype\Definition\BaseType' in method 'getTypeByBasetype'.
              Open

              if (!BaseType::isValid($basetype)) {
              Severity: Minor
              Found in src/Definition/Snowflake.php by phpmd

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

              case self::TYPE_NUMERIC:
              if (is_null($length) || $length === '') {
              break;
              }
              $parts = explode(',', (string) $length);
              Severity: Major
              Found in src/Definition/Snowflake.php and 1 other location - About 1 day to fix
              src/Definition/Redshift.php on lines 149..174

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

              private function getLengthFromArray(array $lengthOptions): ?string
              {
              $expectedOptions = ['character_maximum', 'numeric_precision', 'numeric_scale'];
              $diff = array_diff(array_keys($lengthOptions), $expectedOptions);
              if ($diff !== []) {
              Severity: Major
              Found in src/Definition/Snowflake.php and 2 other locations - About 6 hrs to fix
              src/Definition/MySQL.php on lines 100..119
              src/Definition/Redshift.php on lines 108..127

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

              public static function getTypeByBasetype(string $basetype): string
              {
              $basetype = strtoupper($basetype);
               
              if (!BaseType::isValid($basetype)) {
              Severity: Major
              Found in src/Definition/Snowflake.php and 2 other locations - About 4 hrs to fix
              src/Definition/Exasol.php on lines 413..439
              src/Definition/Synapse.php on lines 277..303
              Category
              Status